|
@@ -6,6 +6,7 @@
|
|
dialogDrag
|
|
dialogDrag
|
|
width="300px"
|
|
width="300px"
|
|
append-to-body
|
|
append-to-body
|
|
|
|
+ align-center="true"
|
|
height="auto"
|
|
height="auto"
|
|
@close="close"
|
|
@close="close"
|
|
@keyup.enter.native="getWorkClient"
|
|
@keyup.enter.native="getWorkClient"
|
|
@@ -13,10 +14,10 @@
|
|
<el-icon style="color: #E6A23C;size:20px"><Warning /></el-icon>是否进行批量审核
|
|
<el-icon style="color: #E6A23C;size:20px"><Warning /></el-icon>是否进行批量审核
|
|
<template #footer>
|
|
<template #footer>
|
|
<div class="dialog-footer">
|
|
<div class="dialog-footer">
|
|
- <el-button @click="todo('1')"
|
|
|
|
|
|
+ <el-button v-loading="loading" size="primary" @click="todo('1')"
|
|
v-noMoreClick>同意
|
|
v-noMoreClick>同意
|
|
</el-button>
|
|
</el-button>
|
|
- <el-button size="primary" type="paimary" @click="todo('0')"
|
|
|
|
|
|
+ <el-button v-loading="loading" type="paimary" @click="todo('0')"
|
|
v-noMoreClick>驳回
|
|
v-noMoreClick>驳回
|
|
</el-button>
|
|
</el-button>
|
|
</div>
|
|
</div>
|
|
@@ -137,10 +138,6 @@
|
|
recordType: ''
|
|
recordType: ''
|
|
})
|
|
})
|
|
.then(async (data) => {
|
|
.then(async (data) => {
|
|
- console.log('total',total)
|
|
|
|
- if ((i+1) === total){
|
|
|
|
- this.$message.success("提交成功");
|
|
|
|
- }
|
|
|
|
console.log('list',this.bxList)
|
|
console.log('list',this.bxList)
|
|
this.pre = dataInfo.processDefinitionName.substring(0, dataInfo.processDefinitionName.lastIndexOf("-"))
|
|
this.pre = dataInfo.processDefinitionName.substring(0, dataInfo.processDefinitionName.lastIndexOf("-"))
|
|
if (this.commonJS.isNotEmpty(dataInfo.task.name)) {
|
|
if (this.commonJS.isNotEmpty(dataInfo.task.name)) {
|
|
@@ -218,6 +215,9 @@
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
+ if ((i+1) === total){
|
|
|
|
+ this.$message.success("提交成功");
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
})
|
|
})
|
|
@@ -312,6 +312,7 @@
|
|
}else if (this.pre === '评估'){
|
|
}else if (this.pre === '评估'){
|
|
await this.pgReimbursementService.findById(this.inputForm.id).then(async (data)=>{
|
|
await this.pgReimbursementService.findById(this.inputForm.id).then(async (data)=>{
|
|
if (data.type !== '2') {
|
|
if (data.type !== '2') {
|
|
|
|
+ this.loading = false
|
|
this.$message.error('数据已发生改变或不存在,请刷新数据')
|
|
this.$message.error('数据已发生改变或不存在,请刷新数据')
|
|
} else {
|
|
} else {
|
|
let param = {type: this.inputForm.type, id: data.id}
|
|
let param = {type: this.inputForm.type, id: data.id}
|
|
@@ -332,6 +333,7 @@
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ this.loading = false
|
|
this.close()
|
|
this.close()
|
|
this.$emit('refreshDataList')
|
|
this.$emit('refreshDataList')
|
|
},
|
|
},
|