审批流添加拒绝

This commit is contained in:
‘huanghaiixia’
2025-12-29 11:03:31 +08:00
parent 351ddc564f
commit b4b883af02
2 changed files with 11 additions and 8 deletions

View File

@ -219,7 +219,9 @@
<a-table :columns="columnsAppro" :data-source="dataListAppro" :pagination="false"> <a-table :columns="columnsAppro" :data-source="dataListAppro" :pagination="false">
<template #bodyCell="{ column, record, index }"> <template #bodyCell="{ column, record, index }">
<template v-if="column.dataIndex === 'file'"> <template v-if="column.dataIndex === 'file'">
<a @click="handleDownload(record)">{{record.fileOrg}}</a> <div v-for="item in (record.lngFileUploadList )">
<a @click="handleDownload(item)">{{item.fileOrg}}</a>
</div>
</template> </template>
<template v-if="column.dataIndex === 'operation'"> <template v-if="column.dataIndex === 'operation'">
<a style="margin-right: 10px" @click="btnCheck('appro', 'view', record, index)">查看</a> <a style="margin-right: 10px" @click="btnCheck('appro', 'view', record, index)">查看</a>

View File

@ -197,13 +197,14 @@ const UserProperties = {
index: 2 index: 2
}, },
// 现在没有拒绝选项 // 现在没有拒绝选项
// { {
// buttonType: ButtonType.DEFAULT, //按钮类型 buttonType: ButtonType.DEFAULT, //按钮类型
// buttonName: t('不同意'), //按钮名称 buttonName: t('拒绝'), //按钮名称
// buttonCode: ApproveCode.DISAGREE, //按钮编码 buttonCode: ApproveCode.DISAGREE, //按钮编码
// approveType: ApproveType.DISAGREE, // approveType: ApproveType.DISAGREE, //
// checked: false, //选中 checked: true, //选中
// }, index: 3
},
{ {
buttonType: ButtonType.DEFAULT, //按钮类型 buttonType: ButtonType.DEFAULT, //按钮类型
buttonName: t('驳回'), //按钮名称 buttonName: t('驳回'), //按钮名称