This commit is contained in:
‘huanghaiixia’
2026-01-21 18:18:19 +08:00
parent 578d9b5094
commit 021b5074b5
17 changed files with 114 additions and 114 deletions

View File

@ -82,19 +82,19 @@
const { t } = useI18n();
const dataListContractAgree = ref([])
const columns= ref([
{ title: t('序号'), dataIndex: 'index', key: 'index', sorter: true, customRender: (column) => `${column.index + 1}` ,width: 80},
{ title: t('开始日期'), dataIndex: 'dateFrom', sorter: true, width:160},
{ title: t('结束日期'), dataIndex: 'dateTo', sorter: true, width: 160},
{ title: t('基础量/增量'), dataIndex: 'baseInc', sorter: true, width: 130},
{ title: t('优先级'), dataIndex: 'sort', sorter: true, width: 100},
{ title: t('比值(方/吉焦)'), dataIndex: 'rateM3Gj', sorter: true, width: 150},
{ title: t('月气量(吉焦)'), dataIndex: 'qtyGjMonth', sorter: true, width: 150},
{ title: t('月气量(万方)'), dataIndex: 'qtyM3Month', sorter: true, width: 150},
{ title: t('日气量(吉焦)'), dataIndex: 'qtyGjDay', sorter: true, width: 120},
{ title: t('日气量(万方)'), dataIndex: 'qtyM3Day', sorter: true, width: 120},
{ title: t('照付不议类型'), dataIndex: 'zfbyTypeCode', sorter: true, width: 120},
{ title: t('照付不议比例%/量数值'), dataIndex: 'zfbyValue', sorter: true, width: 120},
{ title: t('备注'), dataIndex: 'note', sorter: true, width: 200},
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 80},
{ title: t('开始日期'), dataIndex: 'dateFrom', width:160},
{ title: t('结束日期'), dataIndex: 'dateTo', width: 160},
{ title: t('基础量/增量'), dataIndex: 'baseInc', width: 130},
{ title: t('优先级'), dataIndex: 'sort', width: 100},
{ title: t('比值(方/吉焦)'), dataIndex: 'rateM3Gj', width: 150},
{ title: t('月气量(吉焦)'), dataIndex: 'qtyGjMonth', width: 150},
{ title: t('月气量(万方)'), dataIndex: 'qtyM3Month', width: 150},
{ title: t('日气量(吉焦)'), dataIndex: 'qtyGjDay', width: 120},
{ title: t('日气量(万方)'), dataIndex: 'qtyM3Day', width: 120},
{ title: t('照付不议类型'), dataIndex: 'zfbyTypeCode', width: 120},
{ title: t('照付不议比例%/量数值'), dataIndex: 'zfbyValue', width: 120},
{ title: t('备注'), dataIndex: 'note', width: 200},
{ title: t('操作'), dataIndex: 'operation', width: 80, fixed: 'right',align: 'center'},
]);
const [register, { openModal:openModal}] = useModal();