1
This commit is contained in:
2
dist/index.html
vendored
2
dist/index.html
vendored
@@ -8,6 +8,6 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
<script src="/umi.a43f4fc6.js"></script>
|
<script src="/umi.60eced26.js"></script>
|
||||||
|
|
||||||
</body></html>
|
</body></html>
|
||||||
1
dist/src__pages__order__index.30fea0ce.async.js
vendored
Normal file
1
dist/src__pages__order__index.30fea0ce.async.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
dist/umi.a43f4fc6.js → dist/umi.60eced26.js
vendored
2
dist/umi.a43f4fc6.js → dist/umi.60eced26.js
vendored
File diff suppressed because one or more lines are too long
@@ -97,12 +97,12 @@ const LogTableList: React.FC = () => {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '支付类型',
|
title: '支付类型',
|
||||||
dataIndex: 'businessPayType',
|
dataIndex: 'orderPlatform',
|
||||||
valueType: 'text',
|
valueType: 'text',
|
||||||
search: true,
|
search: true,
|
||||||
render: (_: any, record: any) => {
|
render: (_: any, record: any) => {
|
||||||
let color = record.businessPayType == 1 ? 'volcano' : record.businessPayType == 2 ? 'orange' : 'red'
|
let color = record.orderPlatform == 1 ? 'volcano' : record.orderPlatform == 2 ? 'orange' : 'red'
|
||||||
return <Tag color={color}>{record.businessPayType == 1 ? '微信' : record.businessPayType == 2 ? '支付宝' : '钱包'}</Tag>
|
return <Tag color={color}>{record.orderPlatform == 2 ? '微信' : record.orderPlatform == 3 ? '支付宝' : record.orderPlatform == 1 ? '钱包' : '-'}</Tag>
|
||||||
},
|
},
|
||||||
renderFormItem: (
|
renderFormItem: (
|
||||||
_,
|
_,
|
||||||
@@ -110,9 +110,9 @@ const LogTableList: React.FC = () => {
|
|||||||
form,
|
form,
|
||||||
) => {
|
) => {
|
||||||
const statusMap = [
|
const statusMap = [
|
||||||
{ label: '微信', value: 1 },
|
{ label: '微信', value: 2 },
|
||||||
{ label: '支付宝', value: 2 },
|
{ label: '支付宝', value: 3 },
|
||||||
{ label: '钱包', value: 3 },
|
{ label: '钱包', value: 1 },
|
||||||
]
|
]
|
||||||
return <Select
|
return <Select
|
||||||
{...fieldProps}
|
{...fieldProps}
|
||||||
|
|||||||
Reference in New Issue
Block a user