张诺
2026-02-02 59ef95ae90d3e9815afabc751e92c39d1ccf43cb
src/views/inventoryManagement/procurementManagement/paymentHistory/index.vue
@@ -238,19 +238,19 @@
});
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) },