|
|
@@ -37,22 +37,22 @@
|
|
|
|
|
|
/** 表格列配置 */
|
|
|
const columns = ref([
|
|
|
- { type: 'index', width: 50, label: '#' },
|
|
|
+ { type: 'index', width: 70, label: '序号',align: 'center' },
|
|
|
{ label: '仓库名称', prop: 'godownName', align: 'center' },
|
|
|
- { label: '库位编码', prop: 'code', align: 'center', minWidth: 140 },
|
|
|
- { label: '订单编号', prop: 'orderCode', align: 'center' },
|
|
|
- { label: '物流编号', prop: 'logisticsCode', align: 'center' },
|
|
|
- { label: '数量', prop: 'number', align: 'center' },
|
|
|
- { label: '不良数量', prop: 'nonumber', align: 'center' },
|
|
|
- { label: '验货时间', prop: 'createTime', align: 'center', minWidth: 180 },
|
|
|
+ { label: '库位编码', prop: 'positionCode', align: 'center', minWidth: 140 },
|
|
|
+ { label: '订单编号', prop: 'orderId', align: 'center' },
|
|
|
+ { label: '物流编号', prop: 'waybillCode', align: 'center', minWidth: 180 },
|
|
|
+ { label: '数量', prop: 'num', align: 'center', formatter: (row) => 1 },
|
|
|
+ { label: '不良数量', prop: 'badNum', align: 'center' },
|
|
|
+ { label: '验货时间', prop: 'auditFinishTime', align: 'center', minWidth: 120 },
|
|
|
]);
|
|
|
|
|
|
/** 页面组件实例 */
|
|
|
const pageRef = ref(null);
|
|
|
|
|
|
const pageConfig = reactive({
|
|
|
- pageUrl: '/baseinfo/godownposition/pagelist',
|
|
|
- exportUrl: '/baseinfo/godownposition/export',
|
|
|
+ pageUrl: '/baseinfo/godownposition/postionOrderList',
|
|
|
+ exportUrl: '/baseinfo/godownposition/postionOrderExport',
|
|
|
fileName: '库位订单',
|
|
|
cacheKey: 'locationOrderTable'
|
|
|
});
|