|
@@ -238,7 +238,7 @@ export default {
|
|
|
if(e.length == 1){
|
|
|
this.queryParams.sysDeptId = e.join(',')
|
|
|
}else{
|
|
|
- this.queryParams.sysDeptId = e[2]
|
|
|
+ this.queryParams.sysDeptId = e[e.length-1]
|
|
|
}
|
|
|
|
|
|
},
|
|
@@ -246,8 +246,9 @@ export default {
|
|
|
if(e.length == 1){
|
|
|
this.form.sysDeptId = e.join(',')
|
|
|
}else{
|
|
|
- this.form.sysDeptId = e[2]
|
|
|
+ this.form.sysDeptId = e[e.length-1]
|
|
|
}
|
|
|
+ console.log(e[e.length-1])
|
|
|
|
|
|
},
|
|
|
/** 查询 部门招商计划列表 */
|