@@ -145,6 +145,24 @@ const Manage = () => { | |||||
dataIndex: 'order_Count', | dataIndex: 'order_Count', | ||||
hideInSearch: true, | hideInSearch: true, | ||||
}, | }, | ||||
{ | |||||
title: '支付类型', | |||||
dataIndex: 'payMode', | |||||
valueEnum: { | |||||
0: { | |||||
text: '微信支付', | |||||
}, | |||||
1: { | |||||
text: '支付宝', | |||||
}, | |||||
2: { | |||||
text: '余额', | |||||
}, | |||||
3: { | |||||
text: '银联', | |||||
}, | |||||
}, | |||||
}, | |||||
{ | { | ||||
title: '创建时间', | title: '创建时间', | ||||
sorter: true, | sorter: true, | ||||
@@ -72,7 +72,7 @@ const Manage = () => { | |||||
{ | { | ||||
title: '订单时间', | title: '订单时间', | ||||
dataIndex: 'order_CreateTime', | dataIndex: 'order_CreateTime', | ||||
valueType: 'dateRange', | |||||
valueType: 'dateTimeRange', | |||||
hideInTable: true, | hideInTable: true, | ||||
search: { | search: { | ||||
transform: (value) => { | transform: (value) => { | ||||
@@ -180,22 +180,22 @@ const Manage = () => { | |||||
> | > | ||||
查看详情 | 查看详情 | ||||
</a>, | </a>, | ||||
<a | |||||
key="config" | |||||
onClick={() => { | |||||
api.printsmallticket({ "orderId": record.id }) | |||||
.then(re => { | |||||
if (re.data) { | |||||
message.success('打印成功'); | |||||
} else { | |||||
message.error('打印失败'); | |||||
} | |||||
// <a | |||||
// key="config" | |||||
// onClick={() => { | |||||
// api.printsmallticket({ "orderId": record.id }) | |||||
// .then(re => { | |||||
// if (re.data) { | |||||
// message.success('打印成功'); | |||||
// } else { | |||||
// message.error('打印失败'); | |||||
// } | |||||
}) | |||||
// }) | |||||
}} > | |||||
打印小票 | |||||
</a>, | |||||
// }} > | |||||
// 打印小票 | |||||
// </a>, | |||||
], | ], | ||||
}, | }, | ||||
]; | ]; | ||||
@@ -155,23 +155,23 @@ const OrderflowDetail = (props) => { | |||||
dataIndex: 'option', | dataIndex: 'option', | ||||
valueType: 'option', | valueType: 'option', | ||||
render: (_, record) => [ | render: (_, record) => [ | ||||
<a | |||||
key="config" | |||||
onClick={() => { | |||||
api.printsmallticket({ "orderId": props.values.id,"subOrderId":record.id}) | |||||
.then(re => { | |||||
debugger | |||||
if (re.data) { | |||||
message.success('打印成功'); | |||||
} else { | |||||
message.error('打印失败'); | |||||
} | |||||
// <a | |||||
// key="config" | |||||
// onClick={() => { | |||||
// api.printsmallticket({ "orderId": props.values.id,"subOrderId":record.id}) | |||||
// .then(re => { | |||||
// debugger | |||||
// if (re.data) { | |||||
// message.success('打印成功'); | |||||
// } else { | |||||
// message.error('打印失败'); | |||||
// } | |||||
}) | |||||
// }) | |||||
}} > | |||||
打印小票 | |||||
</a>, | |||||
// }} > | |||||
// 打印小票 | |||||
// </a>, | |||||
], | ], | ||||
}, | }, | ||||