|
@@ -1283,8 +1283,8 @@ export default {
|
|
|
this.form.projectType = res.data.projectType //工程类型
|
|
|
this.form.storageType = res.data.storageType //储存类型
|
|
|
|
|
|
- if(Array.isArray(res.data.expDataType)){
|
|
|
- this.form.expDataType = res.data.expDataType //文件类型
|
|
|
+ if(res.data.expDataType){
|
|
|
+ this.form.expDataType = res.data.expDataType.split(',') //文件类型
|
|
|
}else{
|
|
|
this.form.expDataType = [];
|
|
|
}
|
|
@@ -1441,7 +1441,7 @@ export default {
|
|
|
postType: this.form.postType, //岗位类型
|
|
|
associationType: this.form.associationType, //关联类型
|
|
|
|
|
|
- expDataType:this.form.expDataType,//文件类型
|
|
|
+ expDataType:this.form.expDataType.join(','),//文件类型
|
|
|
projectType:this.form.projectType, //工程类型
|
|
|
storageType:this.form.storageType, //储存类型
|
|
|
projectId:this.projectId,//项目id
|