优化
This commit is contained in:
@ -299,31 +299,31 @@
|
||||
}
|
||||
|
||||
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: 'note', sorter: true},
|
||||
{ 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', },
|
||||
{ title: t('操作'), dataIndex: 'operation', width: 220},
|
||||
]);
|
||||
const columnsBank = ref([
|
||||
{ title: t('序号'), dataIndex: 'index', sorter: true, customRender: (column) => `${column.index + 1}`},
|
||||
{ title: t('银行名称'), dataIndex: 'bankName', sorter: true},
|
||||
{ title: t('联行号'), dataIndex: 'interBankCode', sorter: true},
|
||||
{ title: t('账号名称'), dataIndex: 'accountName', sorter: true},
|
||||
{ title: t('银行账号'), dataIndex: 'account', sorter: true},
|
||||
{ title: t('默认银行'), dataIndex: 'defaultSign', sorter: true},
|
||||
{ title: t('操作'), dataIndex: 'operation', sorter: true},
|
||||
{ title: t('序号'), dataIndex: 'index', customRender: (column) => `${column.index + 1}`},
|
||||
{ title: t('银行名称'), dataIndex: 'bankName', },
|
||||
{ title: t('联行号'), dataIndex: 'interBankCode', },
|
||||
{ title: t('账号名称'), dataIndex: 'accountName', },
|
||||
{ title: t('银行账号'), dataIndex: 'account', },
|
||||
{ title: t('默认银行'), dataIndex: 'defaultSign', },
|
||||
{ title: t('操作'), dataIndex: 'operation', },
|
||||
]);
|
||||
const columnsContact = ref([
|
||||
{ title: t('序号'), dataIndex: 'index', sorter: true, customRender: (column) => `${column.index + 1}`},
|
||||
{ title: t('姓名'), dataIndex: 'contactName', sorter: true},
|
||||
{ title: t('联系电话'), dataIndex: 'tel', sorter: true},
|
||||
{ title: t('电子邮箱'), dataIndex: 'email', sorter: true},
|
||||
{ title: t('通讯地址'), dataIndex: 'addrMail', sorter: true},
|
||||
{ title: t('职位'), dataIndex: 'position', sorter: true},
|
||||
{ title: t('备注'), dataIndex: 'note', sorter: true},
|
||||
{ title: t('操作'), dataIndex: 'operation', sorter: true},
|
||||
{ title: t('序号'), dataIndex: 'index', customRender: (column) => `${column.index + 1}`},
|
||||
{ title: t('姓名'), dataIndex: 'contactName', },
|
||||
{ title: t('联系电话'), dataIndex: 'tel', },
|
||||
{ title: t('电子邮箱'), dataIndex: 'email', },
|
||||
{ title: t('通讯地址'), dataIndex: 'addrMail', },
|
||||
{ title: t('职位'), dataIndex: 'position', },
|
||||
{ title: t('备注'), dataIndex: 'note', },
|
||||
{ title: t('操作'), dataIndex: 'operation', },
|
||||
]);
|
||||
const dataCertificate= reactive([]);
|
||||
const dataBank= reactive([]);
|
||||
|
||||
Reference in New Issue
Block a user