Commit 18e25ded authored by qddidi's avatar qddidi

11111

parent 3378334e
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
// 后台管理系统服务器地址 // 后台管理系统服务器地址
//export const baseUrl = 'http://172.16.10.33:9002' //export const baseUrl = 'http://172.16.10.33:9002'
export const baseUrl = 'http://172.16.10.25:9009' export const baseUrl = 'http://172.16.10.25:9002'
//export const baseUrl2 ="http://172.16.10.33:9002" //export const baseUrl2 ="http://172.16.10.33:9002"
export const baseUrl2 = 'http://172.16.10.25:9999' export const baseUrl2 = 'http://172.16.10.25:9999'
// 系统数据备份还原服务器地址 // 系统数据备份还原服务器地址
......
...@@ -177,7 +177,7 @@ ...@@ -177,7 +177,7 @@
for(var i in res.data){ for(var i in res.data){
this.options.push({ this.options.push({
label:res.data[i].name, label:res.data[i].name,
value:res.data[i].name value:res.data[i].id
}) })
} }
}else{ }else{
...@@ -198,10 +198,12 @@ ...@@ -198,10 +198,12 @@
this.$message.error('流程已存在,请选择其它流程!'); this.$message.error('流程已存在,请选择其它流程!');
return return
} }
}
var par={ var par={
type:this.title.split(",")[0], type:this.title.split(",")[0],
flowName:this.title.split(",")[1], flowName:this.title.split(",")[1],
roleIds:"", roleIds:this.value.join(","),
state:1 state:1
} }
this.$api.getlist.insertFolwCourse(par).then((res) => { this.$api.getlist.insertFolwCourse(par).then((res) => {
...@@ -210,7 +212,6 @@ ...@@ -210,7 +212,6 @@
}).catch((res) => { }).catch((res) => {
}); });
}
this.dialogVisible = false this.dialogVisible = false
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment