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

@ -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([])