1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| const tableConfigList = {
| title: "订单件收货记录",
| propList: [
| { prop: "receiveDate", label: "收货日期", minWidth: "100" },
| { prop: "materialCode", label: "物料编号", minWidth: "100" },
| { prop: "bigCode", label: "物料大类", minWidth: "100" },
| { prop: "sizes", label: "规格型号", minWidth: "100" },
| { prop: "length", label: "长(mm)", minWidth: "100"},
| { prop: "width", label: "宽(mm)", minWidth: "100"},
| { prop: "high", label: "高(mm)", minWidth: "100"},
| { prop: "height", label: "重量(kg)", minWidth: "100"},
| { prop: "super", label: "供应商", minWidth: "100"},
| { prop: "poOrder", label: "采购单号", minWidth: "100"},
| { prop: "number", label: "收货数量", minWidth: "100"},
| { prop: "unit", label: "单位", minWidth: "100"},
| { prop: "record", label: "收货登录单号", minWidth: "150"},
| ],
| showTabelIndex: true,
| showTabelSelect: false
| };
| export default tableConfigList;
|
|