|
|
@@ -519,7 +519,8 @@ export default {
|
|
|
if (valid) {
|
|
|
let request={...this.form};
|
|
|
if(this.form.planExecOrgIdList){
|
|
|
- request.planExecOrgIdList = [this.form.planExecOrgIdList];
|
|
|
+ const list = Array.isArray(this.form.planExecOrgIdList) ? this.form.planExecOrgIdList : [this.form.planExecOrgIdList];
|
|
|
+ request.planExecOrgIdList = list;
|
|
|
}
|
|
|
else{
|
|
|
request.planExecOrgIdList = [];
|