销售结算

This commit is contained in:
‘huanghaiixia’
2026-02-05 17:44:35 +08:00
parent 1431ceaec8
commit 9944eb8c3a
10 changed files with 2417 additions and 5 deletions

View File

@ -32,10 +32,10 @@
const dataFile = ref([]);
const { t } = useI18n();
const columns = ref([
{ title: t('序号'), dataIndex: 'index', sorter: true, customRender: (column) => `${column.index + 1}`},
{ title: t('附件名称'), dataIndex: 'fileOrg', sorter: true},
{ title: t('附件说明'), dataIndex: 'remark', sorter: true},
{ title: t('操作'), dataIndex: 'operation', sorter: true},
{ title: t('序号'), dataIndex: 'index', customRender: (column) => `${column.index + 1}`},
{ title: t('附件名称'), dataIndex: 'fileOrg'},
{ title: t('附件说明'), dataIndex: 'remark'},
{ title: t('操作'), dataIndex: 'operation', width: 140},
]);
const tableId = ref<string>();
const tableName = ref<string>();