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

@ -33,16 +33,16 @@
const { t } = useI18n();
const dataList = ref([])
const columns= ref([
{ title: t('序号'), dataIndex: 'index', key: 'index', sorter: true, customRender: (column) => `${column.index + 1}` ,width: 80},
{ title: t('合同号'), dataIndex: 'kNo', sorter: true, width:180},
{ title: t('合同名称'), dataIndex: 'kName', sorter: true, width: 300},
{ title: t('关联类别'), dataIndex: 'relTypeName', sorter: true, width: 100},
{ title: t('合同类别'), dataIndex: 'kTypeName1', sorter: true, width: 100},
{ title: t('合同主体'), dataIndex: 'comName', sorter: true, width: 250},
{ title: t('我方联系人'), dataIndex: 'empName', sorter: true, width: 140},
{ title: t('联系电话'), dataIndex: 'tel', sorter: true, width: 140},
{ title: t('业务部门'), dataIndex: 'bDeptName', sorter: true, width: 140},
{ title: t('附件'), dataIndex: 'file', sorter: true, width: 140},
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 80},
{ title: t('合同号'), dataIndex: 'kNo', width:180},
{ title: t('合同名称'), dataIndex: 'kName', width: 300},
{ title: t('关联类别'), dataIndex: 'relTypeName', width: 100},
{ title: t('合同类别'), dataIndex: 'kTypeName1', width: 100},
{ title: t('合同主体'), dataIndex: 'comName', width: 250},
{ title: t('我方联系人'), dataIndex: 'empName', width: 140},
{ title: t('联系电话'), dataIndex: 'tel', width: 140},
{ title: t('业务部门'), dataIndex: 'bDeptName', width: 140},
{ title: t('附件'), dataIndex: 'file', width: 140},
{ title: t('操作'), dataIndex: 'operation', width: 120, fixed: 'right',align: 'center'},
]);
const [register, { openModal:openModal}] = useModal();