zhangback
2026-03-10 fc2f4490e0949ee9ddedda3fa1cf256f7903ae45
ui/admin-ui3/src/views/tms/tmsDispatchOrder/index.vue
@@ -621,6 +621,7 @@
import { pushTmsQuoteFee } from "@/api/tms/tmsQuoteFee";
import { $Print } from '@smallwei/avue'
import { getToken } from "@/utils/auth";
import {useAvueTableShowHide} from "@/hooks/useAvueTableShowHide";
const { appContext } = getCurrentInstance();
@@ -1717,7 +1718,7 @@
  column: {
    dispatchNo: {
      label: '调度单号', minWidth: 120,
      label: '调度单号', minWidth: 180,
      display: false,
      search: true,
    },
@@ -1728,7 +1729,7 @@
    },
    customerName: {
      label: '客户',
      display: false, minWidth: 120,
      display: false, minWidth: 250,
      search: true,
    },
    mainDriverName: {
@@ -1765,12 +1766,12 @@
    },
    projectName: {
      label: '项目名称',
      display: false, minWidth: 120,
      display: false, minWidth: 250,
      search: true,
    },
    contractName: {
      label: '关联合同名称', minWidth: 120,
      label: '关联合同名称', minWidth: 250,
      display: false,
      search: true,
    },
@@ -1826,7 +1827,7 @@
    },
    isPrint: {
      label: '是否打印承运单',
      display: false, minWidth: 100,
      display: false, minWidth: 120,
      search: true,
      type: 'select', dicUrl: '/system/dict/data/type/sys_number_is', dataType: 'string',
@@ -1850,11 +1851,11 @@
    shipperName: {
      label: '装货点名称',
      display: false, minWidth: 120,
      display: false, minWidth: 200,
      search: true,
    },
    receiverName: {
      label: '卸货点名称', minWidth: 120,
      label: '卸货点名称', minWidth: 200,
      display: false,
      search: true,
    },
@@ -2991,6 +2992,9 @@
  }
})
useAvueTableShowHide(option.value);
const handleConfirm = (row: any) => {
  ElMessageBox.confirm("是否对调度单号" + row.dispatchNo + "确定 ?", '系统提示', {
    confirmButtonText: '确定',
@@ -4658,4 +4662,7 @@
  padding: 1px 11px;
  box-shadow: 0 0 0 1px var(--el-disabled-border-color) inset;
}
.link-btn{
  font-size: 18px;
}
</style>