张诺
2026-02-02 59ef95ae90d3e9815afabc751e92c39d1ccf43cb
src/views/inventoryManagement/procurementManagement/DeliveryTrackingManagement/index.vue
@@ -209,19 +209,19 @@
});
const tableColumn = ref([
  { label: "订单号", prop: "orderCode", width: 180 },
  { label: "承运商", prop: "carrierName", width: 180 },
  { label: "车牌号", prop: "vehicleNo", width: 130 },
  { label: "发货时间", prop: "shipTime", width: 170 },
  { label: "司机", prop: "driverName", width: 120 },
  { label: "司机电话", prop: "driverPhone", width: 140 },
  { label: "更新时间", prop: "updateTime", width: 170 },
  { label: "订单号", prop: "orderCode", minWidth: 180 },
  { label: "承运商", prop: "carrierName", minWidth: 180 },
  { label: "车牌号", prop: "vehicleNo", minWidth: 130 },
  { label: "发货时间", prop: "shipTime", minWidth: 170 },
  { label: "司机", prop: "driverName", minWidth: 120 },
  { label: "司机电话", prop: "driverPhone", minWidth: 140 },
  { label: "更新时间", prop: "updateTime", minWidth: 170 },
  {
    label: "操作",
    prop: "action",
    dataType: "action",
    fixed: "right",
    width: 120,
    minWidth: 120,
    operation: [
      { name: "查看轨迹", clickFun: (row) => openTrack(row) },
      { name: "删除", clickFun: (row) => handleDelete(row) },