合同要素

This commit is contained in:
‘huanghaiixia’
2025-12-25 17:51:53 +08:00
parent 0387c2ca86
commit 594ecb5309
16 changed files with 719 additions and 377 deletions

View File

@ -9,8 +9,8 @@
<template v-if="column.dataIndex === 'fileOrg'">
<a @click="handleDownload(record)">{{record.fileOrg}}</a>
</template>
<template v-if="column.dataIndex === 'docDesc' && !disabled">
<a-input :placeholder="t('请输入附件说明')" :disabled="disabled" v-model:value="record.docDesc" />
<template v-if="column.dataIndex === 'remark' && !disabled">
<a-input :placeholder="t('请输入附件说明')" :disabled="disabled" v-model:value="record.remark" />
</template>
<template v-if="column.dataIndex === 'operation'">
<a style="margin-right: 10px" @click="btnCheck('delete', record, index)">删除</a>
@ -34,7 +34,7 @@
const columns = ref([
{ title: t('序号'), dataIndex: 'index', sorter: true, customRender: (column) => `${column.index + 1}`},
{ title: t('附件名称'), dataIndex: 'fileOrg', sorter: true},
{ title: t('附件说明'), dataIndex: 'docDesc', sorter: true},
{ title: t('附件说明'), dataIndex: 'remark', sorter: true},
{ title: t('操作'), dataIndex: 'operation', sorter: true},
]);
const tableId = ref<string>();