52601 【手机端】企标废止流程 审定节点 第6步 点同意没反应

This commit is contained in:
宋伟佳
2022-04-15 17:31:05 +08:00
parent 5b2ff015b3
commit ec72ec55f3
@@ -251,31 +251,25 @@ export default {
}, },
//流程提交 //流程提交
handleSubmit() { handleSubmit() {
this.$refs['qbfsForm'].validate((valid) => { this.isSubmit = true;
if (valid) { this.qbfsForm.commentText = this.commentText;
this.isSubmit = true; this.qbfsForm.sdFlag = '0'
this.qbfsForm.commentText = this.commentText; this.qbfsForm.dataList = this.dataList;
this.qbfsForm.sdFlag = '0' let json = JSON.stringify(this.qbfsForm);
this.qbfsForm.dataList = this.dataList; this.$http.post("lawss/activiti/completeTask", {
let json = JSON.stringify(this.qbfsForm); taskIds: this.$route.query.taskIds,
this.$http.post("lawss/activiti/completeTask", { userId: this.$store.getters.userInfo.account,
taskIds: this.$route.query.taskIds, json: json
userId: this.$store.getters.userInfo.account, }, {
json: json _this: this
}, { }, res => {
_this: this if (res.success) {
}, res => { this.$message.success(res.message);
if (res.success) { this.$router.push("/processCenter");
this.$message.success(res.message);
this.$router.push("/processCenter");
}
this.isSubmit = false;
}, e => {
});
}else{
this.$message.warning('请完善基础信息')
} }
}) this.isSubmit = false;
}, e => {
});
}, },
handleTabs(name) { handleTabs(name) {