| | |
| | | }); |
| | | |
| | | const tableColumn = ref([ |
| | | { label: "合同编号", prop: "contractCode", width: 160 }, |
| | | { label: "合同名称", prop: "contractName", width: 200 }, |
| | | { label: "承运商", prop: "carrierName", width: 200 }, |
| | | { label: "状态", prop: "contractStatus", dataType: "slot", slot: "statusSlot", width: 90 }, |
| | | { label: "开始时间", prop: "startTime", width: 170 }, |
| | | { label: "结束时间", prop: "endTime", width: 170 }, |
| | | { label: "修改时间", prop: "updateTime", width: 170 }, |
| | | { label: "合同编号", prop: "contractCode", minWidth: 160 }, |
| | | { label: "合同名称", prop: "contractName", minWidth: 200 }, |
| | | { label: "承运商", prop: "carrierName", minWidth: 200 }, |
| | | { label: "状态", prop: "contractStatus", dataType: "slot", slot: "statusSlot", minWidth: 90 }, |
| | | { label: "开始时间", prop: "startTime", minWidth: 170 }, |
| | | { label: "结束时间", prop: "endTime", minWidth: 170 }, |
| | | { label: "修改时间", prop: "updateTime", minWidth: 170 }, |
| | | { |
| | | label: "操作", |
| | | prop: "action", |
| | | dataType: "action", |
| | | fixed: "right", |
| | | width: 140, |
| | | minWidth: 140, |
| | | operation: [ |
| | | { name: "查看", clickFun: (row) => openView(row) }, |
| | | { name: "编辑", clickFun: (row) => openMaintain(row) }, |