This commit is contained in:
‘huanghaiixia’
2026-01-21 18:09:53 +08:00
parent 8d35470de1
commit 578d9b5094
11 changed files with 89 additions and 95 deletions

View File

@ -389,15 +389,15 @@
}
const columnsCertificate = ref([
{ title: t('序号'), dataIndex: 'index', key: 'index', sorter: true, customRender: (column) => `${column.index + 1}` ,width: 100},
{ title: t('资质证书名称'), dataIndex: 'docTypeCode', sorter: true, width:200},
{ title: t('有效期开始'), dataIndex: 'dateFrom', sorter: true, width: 140},
{ title: t('有效期结束'), dataIndex: 'dateTo', sorter: true, width: 140},
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 100},
{ title: t('资质证书名称'), dataIndex: 'docTypeCode', width:200},
{ title: t('有效期开始'), dataIndex: 'dateFrom', width: 140},
{ title: t('有效期结束'), dataIndex: 'dateTo', width: 140},
{ title: t('备注'), dataIndex: 'note', sorter: true},
{ title: t('操作'), dataIndex: 'operation', width: 220},
]);
const columnsBank = ref([
{ title: t('序号'), dataIndex: 'index', sorter: true, customRender: (column) => `${column.index + 1}`},
{ title: t('序号'), dataIndex: 'index', customRender: (column) => `${column.index + 1}`},
{ title: t('银行名称'), dataIndex: 'bankName', sorter: true},
{ title: t('联行号'), dataIndex: 'interBankCode', sorter: true},
{ title: t('账号名称'), dataIndex: 'accountName', sorter: true},
@ -406,7 +406,7 @@
{ title: t('操作'), dataIndex: 'operation', sorter: true},
]);
const columnsContact = ref([
{ title: t('序号'), dataIndex: 'index', sorter: true, customRender: (column) => `${column.index + 1}`},
{ title: t('序号'), dataIndex: 'index', customRender: (column) => `${column.index + 1}`},
{ title: t('姓名'), dataIndex: 'contactName', sorter: true},
{ title: t('联系电话'), dataIndex: 'tel', sorter: true},
{ title: t('电子邮箱'), dataIndex: 'email', sorter: true},

View File

@ -81,12 +81,12 @@
const columns= ref([
{ title: t('序号'), dataIndex: 'index', key: 'index', sorter: true, customRender: (column) => `${column.index + 1}` ,width: 100},
{ title: t('客户编码'), dataIndex: 'cuCode', sorter: true, width:100},
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 100},
{ title: t('客户编码'), dataIndex: 'cuCode', width:100},
{ title: t('客户名称'), dataIndex: 'cuName', sorter: true},
{ title: t('国内/国际'), dataIndex: 'diName', sorter: true, width: 140},
{ title: t('客户类别'), dataIndex: 'typeName', sorter: true, width: 140},
{ title: t('客户分类'), dataIndex: 'className', sorter: true, width: 140},
{ title: t('国内/国际'), dataIndex: 'diName', width: 140},
{ title: t('客户类别'), dataIndex: 'typeName', width: 140},
{ title: t('客户分类'), dataIndex: 'className', width: 140},
{ title: t('操作'), dataIndex: 'operation', width: 120},
]);
const dataList = ref([])

View File

@ -58,10 +58,10 @@
const { t } = useI18n();
const dataList = ref([])
const columns = ref([
{ title: t('序号'), dataIndex: 'index', key: 'index', sorter: true, customRender: (column) => `${column.index + 1}` ,width: 100},
{ title: t('评价事项'), dataIndex: 'itemName', sorter: true, width:200},
{ title: t('评价标准'), dataIndex: 'itemDesc', sorter: true, },
{ title: t('评价部门'), dataIndex: 'eDeptName', sorter: true, width: 200},
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 100},
{ title: t('评价事项'), dataIndex: 'itemName', width:200},
{ title: t('评价标准'), dataIndex: 'itemDesc', },
{ title: t('评价部门'), dataIndex: 'eDeptName', width: 200},
{ title: t('操作'), dataIndex: 'operation', width: 120},
]);
const curIdx = ref(null)

View File

@ -133,15 +133,15 @@
}
const gsIdOld = ref()
const columns = ref([
{ title: t('序号'), dataIndex: 'index', key: 'index', sorter: true, customRender: (column) => `${column.index + 1}` ,width: 80},
{ title: t('评价事项'), dataIndex: 'itemName', sorter: true},
{ title: t('评价标准'), dataIndex: 'itemDesc', sorter: true},
{ title: t('评价部门'), dataIndex: 'eDeptName', sorter: true},
{ title: t('评分'), dataIndex: 'score', sorter: true},
{ title: t('分数说明'), dataIndex: 'scoreDesc', sorter: true},
{ title: t('评价人'), dataIndex: 'aEmpName', sorter: true},
{ title: t('评价时间'), dataIndex: 'aTime', sorter: true},
{ title: t('实际评价部门'), dataIndex: 'aDeptName', sorter: true},
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 80},
{ title: t('评价事项'), dataIndex: 'itemName', },
{ title: t('评价标准'), dataIndex: 'itemDesc', },
{ title: t('评价部门'), dataIndex: 'eDeptName', },
{ title: t('评分'), dataIndex: 'score', },
{ title: t('分数说明'), dataIndex: 'scoreDesc', },
{ title: t('评价人'), dataIndex: 'aEmpName', },
{ title: t('评价时间'), dataIndex: 'aTime', },
{ title: t('实际评价部门'), dataIndex: 'aDeptName', },
]);
const dataList= ref([]);
const dataFile = ref([]);