|
|
@@ -56,18 +56,39 @@
|
|
|
|
|
|
// 表格列配置
|
|
|
const columns = ref([
|
|
|
- { label: '订单号', prop: 'orderId',align:'center' },
|
|
|
- { label: '用户名', prop: 'userNick',align:'center' },
|
|
|
- { label: '预估价格', prop: 'expectMoney',align:'center' },
|
|
|
- { label: '预估本数', prop: 'totalNum',align:'center' },
|
|
|
- { label: '回收本数', prop: 'recycleBookNum',align:'center' },
|
|
|
- { label: '审核金额', prop: 'auditMoney',align:'center' },
|
|
|
- { label: '发货人', prop: 'sendName',align:'center' },
|
|
|
- { label: '手机号', prop: 'sendMobile',align:'center' },
|
|
|
- { label: '发货地址', prop: 'sendSsq',minWidth: 120,align:'center' },
|
|
|
- { label: '收货仓库', prop: 'recipientGodown', slot: 'recipientGodown',align:'center' },
|
|
|
- { label: '订单状态', prop: 'status', slot: 'status',minWidth:120,align:'center' },
|
|
|
- { label: '提交时间', prop: 'orderTime',width:160,align:'center' }
|
|
|
+ { label: '订单号', prop: 'orderId', align: 'center' },
|
|
|
+ { label: '用户名', prop: 'userNick', align: 'center' },
|
|
|
+ {
|
|
|
+ label: '预估价格',
|
|
|
+ prop: 'expectMoney',
|
|
|
+ align: 'center',
|
|
|
+ formatter: (row) => (row.expectMoney ? '¥' + row.expectMoney : '--')
|
|
|
+ },
|
|
|
+ { label: '预估本数', prop: 'totalNum', align: 'center' },
|
|
|
+ { label: '回收本数', prop: 'recycleBookNum', align: 'center' },
|
|
|
+ {
|
|
|
+ label: '审核金额',
|
|
|
+ prop: 'finalMoney',
|
|
|
+ align: 'center',
|
|
|
+ formatter: (row) => (row.finalMoney ? '¥' + row.finalMoney : '--')
|
|
|
+ },
|
|
|
+ { label: '发货人', prop: 'sendName', align: 'center' },
|
|
|
+ { label: '手机号', prop: 'sendMobile', align: 'center' },
|
|
|
+ { label: '发货地址', prop: 'sendSsq', minWidth: 120, align: 'center' },
|
|
|
+ {
|
|
|
+ label: '收货仓库',
|
|
|
+ prop: 'recipientGodown',
|
|
|
+ slot: 'recipientGodown',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '订单状态',
|
|
|
+ prop: 'status',
|
|
|
+ slot: 'status',
|
|
|
+ minWidth: 120,
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ { label: '提交时间', prop: 'orderTime', width: 160, align: 'center' }
|
|
|
]);
|
|
|
|
|
|
// 页面配置
|