会签意见节点添加提示
This commit is contained in:
@@ -662,6 +662,18 @@
|
||||
<el-button type="primary" round class="common-button-primary" icon="el-icon-check" @click="replaceLawsNumModelBt">提交</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
<!--意见提示-->
|
||||
<el-dialog
|
||||
title="提示"
|
||||
:visible.sync="opinionDialogVisible"
|
||||
top="30vh"
|
||||
width="400px">
|
||||
<span>当前征询意见暂无,请确认是否提交</span>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
<el-button @click="opinionDialogVisible = false">取 消</el-button>
|
||||
<el-button type="primary" @click="opinionClick">确 定</el-button>
|
||||
</span>
|
||||
</el-dialog>
|
||||
<Role-tree
|
||||
is-title="选择责任部门对接人"
|
||||
:is-visible.sync="modalShowRoleFlag"
|
||||
@@ -1393,6 +1405,7 @@
|
||||
syrzOptions:[],//适用认证下拉框
|
||||
data: [], // 标准列表数据
|
||||
ListForm: {}, // 新增数据
|
||||
opinionDialogVisible: false
|
||||
}
|
||||
},
|
||||
watch:{
|
||||
@@ -2902,41 +2915,47 @@
|
||||
if (valid) {
|
||||
this.$refs['formTongGuo'].validate((valid) => {
|
||||
if (valid) {
|
||||
this.isSubmit = true
|
||||
this.saveLoading = true
|
||||
|
||||
this.summary=this.summaryList.map(item => item.id).join(",")
|
||||
this.summaryName=this.summaryList.map(item => item.name).join(",")
|
||||
|
||||
this.form.commentText = this.formTongGuo.commentText
|
||||
// this.form.approvalOpinion = this.formTongGuo.approvalOpinion
|
||||
// 会签意见存储
|
||||
const json = JSON.stringify(this.form);
|
||||
this.$http.post('lawss/activiti/completeTask', {
|
||||
taskIds: this.taskIds,
|
||||
userId : this.userId,
|
||||
json: json
|
||||
}, {
|
||||
_this: this
|
||||
}, res => {
|
||||
if (res.success) {
|
||||
this.$message.success(res.message)
|
||||
// 流程提交之后,应该流转至待办任务页面
|
||||
this.isSubmit = false
|
||||
this.saveLoading = false
|
||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||
// if(this.formTongGuo.approvalOpinion === '1'){
|
||||
// this.$message.warning("驳回成功")
|
||||
// this.isSubmit = false
|
||||
// // 流程提交之后,应该流转至待办任务页面
|
||||
// this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||
// }else{
|
||||
// this.processCreateLaws(json)
|
||||
// }
|
||||
}else {
|
||||
this.$message.success(res.message)
|
||||
}
|
||||
})
|
||||
if(this.form.modelData.length === 0){
|
||||
this.opinionDialogVisible = true
|
||||
}else{
|
||||
this.commentTextHandle();
|
||||
}
|
||||
// this.isSubmit = true
|
||||
// this.saveLoading = true
|
||||
//
|
||||
// this.summary=this.summaryList.map(item => item.id).join(",")
|
||||
// this.summaryName=this.summaryList.map(item => item.name).join(",")
|
||||
//
|
||||
// this.form.commentText = this.formTongGuo.commentText
|
||||
//
|
||||
// // this.form.approvalOpinion = this.formTongGuo.approvalOpinion
|
||||
// // 会签意见存储
|
||||
// const json = JSON.stringify(this.form);
|
||||
// this.$http.post('lawss/activiti/completeTask', {
|
||||
// taskIds: this.taskIds,
|
||||
// userId : this.userId,
|
||||
// json: json
|
||||
// }, {
|
||||
// _this: this
|
||||
// }, res => {
|
||||
// if (res.success) {
|
||||
// this.$message.success(res.message)
|
||||
// // 流程提交之后,应该流转至待办任务页面
|
||||
// this.isSubmit = false
|
||||
// this.saveLoading = false
|
||||
// this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||
// // if(this.formTongGuo.approvalOpinion === '1'){
|
||||
// // this.$message.warning("驳回成功")
|
||||
// // this.isSubmit = false
|
||||
// // // 流程提交之后,应该流转至待办任务页面
|
||||
// // this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||
// // }else{
|
||||
// // this.processCreateLaws(json)
|
||||
// // }
|
||||
// }else {
|
||||
// this.$message.success(res.message)
|
||||
// }
|
||||
// })
|
||||
}else {
|
||||
this.$message.warning('请确认是否填写完整')
|
||||
}
|
||||
@@ -2946,6 +2965,39 @@
|
||||
}
|
||||
})
|
||||
},
|
||||
opinionClick(){
|
||||
this.opinionDialogVisible = false
|
||||
this.commentTextHandle();
|
||||
},
|
||||
commentTextHandle(){
|
||||
this.isSubmit = true
|
||||
this.saveLoading = true
|
||||
|
||||
this.summary=this.summaryList.map(item => item.id).join(",")
|
||||
this.summaryName=this.summaryList.map(item => item.name).join(",")
|
||||
|
||||
this.form.commentText = this.formTongGuo.commentText
|
||||
|
||||
// 会签意见存储
|
||||
const json = JSON.stringify(this.form);
|
||||
this.$http.post('lawss/activiti/completeTask', {
|
||||
taskIds: this.taskIds,
|
||||
userId : this.userId,
|
||||
json: json
|
||||
}, {
|
||||
_this: this
|
||||
}, res => {
|
||||
if (res.success) {
|
||||
this.$message.success(res.message)
|
||||
// 流程提交之后,应该流转至待办任务页面
|
||||
this.isSubmit = false
|
||||
this.saveLoading = false
|
||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||
}else {
|
||||
this.$message.success(res.message)
|
||||
}
|
||||
})
|
||||
},
|
||||
busVsFunc(){
|
||||
this.$http.get('sarVppsTree/list', '', {
|
||||
_this: this
|
||||
|
||||
Reference in New Issue
Block a user