审批流添加拒绝
This commit is contained in:
@ -219,7 +219,9 @@
|
||||
<a-table :columns="columnsAppro" :data-source="dataListAppro" :pagination="false">
|
||||
<template #bodyCell="{ column, record, index }">
|
||||
<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 v-if="column.dataIndex === 'operation'">
|
||||
<a style="margin-right: 10px" @click="btnCheck('appro', 'view', record, index)">查看</a>
|
||||
|
||||
@ -197,13 +197,14 @@ const UserProperties = {
|
||||
index: 2
|
||||
},
|
||||
// 现在没有拒绝选项
|
||||
// {
|
||||
// buttonType: ButtonType.DEFAULT, //按钮类型
|
||||
// buttonName: t('不同意'), //按钮名称
|
||||
// buttonCode: ApproveCode.DISAGREE, //按钮编码
|
||||
// approveType: ApproveType.DISAGREE, //
|
||||
// checked: false, //选中
|
||||
// },
|
||||
{
|
||||
buttonType: ButtonType.DEFAULT, //按钮类型
|
||||
buttonName: t('拒绝'), //按钮名称
|
||||
buttonCode: ApproveCode.DISAGREE, //按钮编码
|
||||
approveType: ApproveType.DISAGREE, //
|
||||
checked: true, //选中
|
||||
index: 3
|
||||
},
|
||||
{
|
||||
buttonType: ButtonType.DEFAULT, //按钮类型
|
||||
buttonName: t('驳回'), //按钮名称
|
||||
|
||||
Reference in New Issue
Block a user