|
@ -77,7 +77,10 @@ |
|
|
prop="publichIdArray" |
|
|
prop="publichIdArray" |
|
|
label-width="150px" |
|
|
label-width="150px" |
|
|
style="display: block"> |
|
|
style="display: block"> |
|
|
<el-cascader class="item_width_1" |
|
|
<div v-if="formType==='detail'" |
|
|
|
|
|
class="item_width_1">{{formData.publishPartyOrgName}}</div> |
|
|
|
|
|
<el-cascader v-else |
|
|
|
|
|
class="item_width_1" |
|
|
ref="myCascader" |
|
|
ref="myCascader" |
|
|
v-model="formData.publichIdArray" |
|
|
v-model="formData.publichIdArray" |
|
|
:key="iscascaderShow" |
|
|
:key="iscascaderShow" |
|
@ -90,7 +93,10 @@ |
|
|
prop="joinIdArray" |
|
|
prop="joinIdArray" |
|
|
label-width="150px" |
|
|
label-width="150px" |
|
|
style="display: block"> |
|
|
style="display: block"> |
|
|
<el-cascader class="item_width_1" |
|
|
<div v-if="formType==='detail'" |
|
|
|
|
|
class="item_width_1">{{formData.joinNames}}</div> |
|
|
|
|
|
<el-cascader v-else |
|
|
|
|
|
class="item_width_1" |
|
|
ref="myCascader_join" |
|
|
ref="myCascader_join" |
|
|
v-model="formData.joinIdArray" |
|
|
v-model="formData.joinIdArray" |
|
|
:key="joinIscascaderShow" |
|
|
:key="joinIscascaderShow" |
|
@ -389,9 +395,16 @@ export default { |
|
|
|
|
|
|
|
|
this.formData.publichIdArray = data.publishOrgPath.split(':') |
|
|
this.formData.publichIdArray = data.publishOrgPath.split(':') |
|
|
this.formData.joinIdArray = [] |
|
|
this.formData.joinIdArray = [] |
|
|
|
|
|
this.formData.joinNames = '' |
|
|
data.joinOrgList.forEach(element => { |
|
|
data.joinOrgList.forEach(element => { |
|
|
this.formData.joinIdArray.push(element.joinOrgPath.split(':')) |
|
|
this.formData.joinIdArray.push(element.joinOrgPath.split(':')) |
|
|
|
|
|
this.formData.joinNames = this.formData.joinNames + element.joinOrgName + ',' |
|
|
|
|
|
|
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
if (this.formData.joinNames) { |
|
|
|
|
|
this.formData.joinNames = this.formData.joinNames.substring(0, this.formData.joinNames.length - 1) |
|
|
|
|
|
} |
|
|
this.isAutoInform = this.formData.isAutoInform == '1' |
|
|
this.isAutoInform = this.formData.isAutoInform == '1' |
|
|
|
|
|
|
|
|
this.fileList = [... this.formData.attachmentList] |
|
|
this.fileList = [... this.formData.attachmentList] |
|
|