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

@ -318,17 +318,17 @@
wrapperCol: { span: 16 },
}
const columns= ref([
{ title: t('序号'), dataIndex: 'index', key: 'index', sorter: true, customRender: (column) => `${column.index + 1}` ,width: 100},
{ title: t('相对方名称'), dataIndex: 'cpName', sorter: true, width:200},
{ title: t('相对方顺序'), dataIndex: 'sort', sorter: true, width: 130},
{ title: t('相对方银行名称'), dataIndex: 'cpBankName', sorter: true, width: 200},
{ title: t('对方银行开户名'), dataIndex: 'cpBankAccountName', sorter: true, width: 300},
{ title: t('对方银行账号'), dataIndex: 'cpBankAccount', sorter: true, width: 200},
{ title: t('对方联系人姓名'), dataIndex: 'contactName', sorter: true, width: 200},
{ title: t('对方联系人电话'), dataIndex: 'contactTel', sorter: true, width: 200},
{ title: t('对方联系人邮箱'), dataIndex: 'contactEmail', sorter: true, width: 200},
{ title: t('对方通讯地址'), dataIndex: 'contactAddress', sorter: true, width: 200},
{ title: t('备注'), dataIndex: 'note', sorter: true, width: 200},
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 100},
{ title: t('相对方名称'), dataIndex: 'cpName', width:200},
{ title: t('相对方顺序'), dataIndex: 'sort', width: 130},
{ title: t('相对方银行名称'), dataIndex: 'cpBankName', width: 200},
{ title: t('对方银行开户名'), dataIndex: 'cpBankAccountName', width: 300},
{ title: t('对方银行账号'), dataIndex: 'cpBankAccount', width: 200},
{ title: t('对方联系人姓名'), dataIndex: 'contactName', width: 200},
{ title: t('对方联系人电话'), dataIndex: 'contactTel', width: 200},
{ title: t('对方联系人邮箱'), dataIndex: 'contactEmail', width: 200},
{ title: t('对方通讯地址'), dataIndex: 'contactAddress', width: 200},
{ title: t('备注'), dataIndex: 'note', width: 200},
{ title: t('操作'), dataIndex: 'operation', width: 120, fixed: 'right',align: 'center'},
]);
const dataList = ref([])

View File

@ -266,27 +266,27 @@
wrapperCol: { span: 16 },
}
const columnsUp = ref([
{ title: t('序号'), dataIndex: 'index', key: 'index', sorter: true, customRender: (column) => `${column.index + 1}` ,width: 80},
{ title: t('交割点'), dataIndex: 'pointDelyName', sorter: true, width:150},
{ title: t('是否托运'), dataIndex: 'transName', sorter: true, width: 150},
{ title: t('供应商'), dataIndex: 'cpName', sorter: true, width: 130},
{ title: t('合同名称'), dataIndex: 'kName', sorter: true, width: 100},
{ title: t('上载点'), dataIndex: 'pointUpName', sorter: true, width: 150},
{ title: t('有效期开始'), dataIndex: 'dateFrom', sorter: true, width: 150},
{ title: t('有效期结束'), dataIndex: 'dateTo', sorter: true, width: 150},
{ title: t('备注)'), dataIndex: 'note', sorter: true, width: 180}
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 80},
{ title: t('交割点'), dataIndex: 'pointDelyName', width:150},
{ title: t('是否托运'), dataIndex: 'transName', width: 150},
{ title: t('供应商'), dataIndex: 'cpName', width: 130},
{ title: t('合同名称'), dataIndex: 'kName', width: 100},
{ title: t('上载点'), dataIndex: 'pointUpName', width: 150},
{ title: t('有效期开始'), dataIndex: 'dateFrom', width: 150},
{ title: t('有效期结束'), dataIndex: 'dateTo', width: 150},
{ title: t('备注)'), dataIndex: 'note', width: 180}
])
const columnsTrans = ref([
{ title: t('序号'), dataIndex: 'index', key: 'index', sorter: true, customRender: (column) => `${column.index + 1}` ,width: 80},
{ title: t('交割点'), dataIndex: 'pointDelyName', sorter: true, width:150},
{ title: t('是否托运'), dataIndex: 'transName', sorter: true, width: 150},
{ title: t('托运商'), dataIndex: 'cpName', sorter: true, width: 130},
{ title: t('合同名称'), dataIndex: 'kName', sorter: true, width: 100},
{ title: t('管输上载点'), dataIndex: 'pointUpTransName', sorter: true, width: 150},
{ title: t('管输下载点'), dataIndex: 'pointDelyTransName', sorter: true, width: 150},
{ title: t('有效期开始'), dataIndex: 'dateFrom', sorter: true, width: 150},
{ title: t('有效期结束'), dataIndex: 'dateTo', sorter: true, width: 150},
{ title: t('备注)'), dataIndex: 'note', sorter: true, width: 180}
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 80},
{ title: t('交割点'), dataIndex: 'pointDelyName', width:150},
{ title: t('是否托运'), dataIndex: 'transName', width: 150},
{ title: t('托运商'), dataIndex: 'cpName', width: 130},
{ title: t('合同名称'), dataIndex: 'kName', width: 100},
{ title: t('管输上载点'), dataIndex: 'pointUpTransName', width: 150},
{ title: t('管输下载点'), dataIndex: 'pointDelyTransName', width: 150},
{ title: t('有效期开始'), dataIndex: 'dateFrom', width: 150},
{ title: t('有效期结束'), dataIndex: 'dateTo', width: 150},
{ title: t('备注)'), dataIndex: 'note', width: 180}
])
const dataListContractAgree = ref([])
const dataFile = ref([]);