合同要素
This commit is contained in:
@ -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>();
|
||||
|
||||
Reference in New Issue
Block a user