|
@@ -821,7 +821,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
getSettings() {
|
|
|
- this.http.post('/audit-workflow-setting/get',{deptId: this.depData.id},
|
|
|
+ this.http.post('/audit-workflow-setting/get',{deptId: this.depData.id,type: 1},
|
|
|
res => {
|
|
|
this.listLoading = false;
|
|
|
if (res.code == "ok") {
|
|
@@ -896,7 +896,7 @@ export default {
|
|
|
},
|
|
|
editNodeDialog(index, item) {
|
|
|
//检查是否可编辑
|
|
|
- this.http.post('/audit-workflow-setting/checkNodeInUse',{auditDeptId: item.auditDeptId, deptId: this.depData.id},
|
|
|
+ this.http.post('/audit-workflow-setting/checkNodeInUse',{auditDeptId: item.auditDeptId, deptId: this.depData.id,type: 1},
|
|
|
res => {
|
|
|
this.listLoading = false;
|
|
|
if (res.code == "ok") {
|
|
@@ -947,7 +947,7 @@ export default {
|
|
|
this.dataArray.splice(this.sindex, 1);
|
|
|
},
|
|
|
submitInsert() {
|
|
|
- this.http.post('/audit-workflow-setting/add',{json:JSON.stringify(this.dataArray), deptId: this.depData.id},
|
|
|
+ this.http.post('/audit-workflow-setting/add',{json:JSON.stringify(this.dataArray), deptId: this.depData.id, type:1},
|
|
|
res => {
|
|
|
this.listLoading = false;
|
|
|
if (res.code == "ok") {
|