转办功能开发
This commit is contained in:
parent
b5f9531943
commit
bd036feee2
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-29 15:59:51
|
* @Date: 2022-06-29 15:59:51
|
||||||
* @LastEditors: Light
|
* @LastEditors: Light
|
||||||
* @LastEditTime: 2022-10-21 09:31:25
|
* @LastEditTime: 2022-10-21 16:11:46
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
-->
|
-->
|
||||||
<!-- 流程业务表单 -->
|
<!-- 流程业务表单 -->
|
||||||
|
@ -94,7 +94,7 @@
|
||||||
<el-radio-button label="退回" class="redAll" @click="showDialog('退回')">退回</el-radio-button>
|
<el-radio-button label="退回" class="redAll" @click="showDialog('退回')">退回</el-radio-button>
|
||||||
</el-radio-group> -->
|
</el-radio-group> -->
|
||||||
<!-- 委托 -->
|
<!-- 委托 -->
|
||||||
<el-button type="info" @click="entrustTask()" v-if='taskEntrustFlag && taskEntrustFlag2'>{{ $t('process.entrustTask') }}</el-button>
|
<el-button type="info" @click="entrustTask()" v-if='taskEntrustFlag && taskEntrustFlag2'>转办</el-button>
|
||||||
<el-button type="primary" @click="showDialog('同意')">同意</el-button>
|
<el-button type="primary" @click="showDialog('同意')">同意</el-button>
|
||||||
<el-button type="danger" plain @click="showDialog('驳回')">驳回</el-button>
|
<el-button type="danger" plain @click="showDialog('驳回')">驳回</el-button>
|
||||||
<!-- <el-input v-if="agreeOrList ==='同意' " v-model="inputAgree" placeholder="请输入同意意见"></el-input>
|
<!-- <el-input v-if="agreeOrList ==='同意' " v-model="inputAgree" placeholder="请输入同意意见"></el-input>
|
||||||
|
@ -269,9 +269,25 @@ export default {
|
||||||
this.dataForm,
|
this.dataForm,
|
||||||
'elas============================'
|
'elas============================'
|
||||||
)
|
)
|
||||||
if (res.data.tAbilityApplicationDTOList[0].allowEntrust === true) {
|
this.$http
|
||||||
this.taskEntrustFlag2 = true
|
.get(
|
||||||
}
|
`/act/task/getTaskVariables?${params}&variableName=allowEntrust`
|
||||||
|
).then(entrust => {
|
||||||
|
if (entrust.data.data.allowEntrust === true) {
|
||||||
|
this.taskEntrustFlag2 = true
|
||||||
|
if (this.taskEntrustFlag && this.taskEntrustFlag2) {
|
||||||
|
this.$alert('当前审核部门为' + res.data.tAbilityApplicationDTOList[0].resourceOwnerDept.name + ',该部门未配置审核人,请联系运维工程师配置完成后进行流程转办!', '流程提醒', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
callback: action => {
|
||||||
|
// this.$message({
|
||||||
|
// type: 'info',
|
||||||
|
// message: `action: ${action}`
|
||||||
|
// })
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
if (res.data.tAbilityApplicationDTOList[0].applicationScene) {
|
if (res.data.tAbilityApplicationDTOList[0].applicationScene) {
|
||||||
res.data.tAbilityApplicationDTOList[0].applicationSceneStr = ''
|
res.data.tAbilityApplicationDTOList[0].applicationSceneStr = ''
|
||||||
res.data.tAbilityApplicationDTOList[0].applicationScene.map(
|
res.data.tAbilityApplicationDTOList[0].applicationScene.map(
|
||||||
|
|
Loading…
Reference in New Issue