Browse Source

dd

shibei_master
13176889840 3 years ago
parent
commit
a8ab3d45f5
  1. 3
      src/views/modules/base/resi.vue
  2. 6
      src/views/modules/communityParty/members/crateForm.vue

3
src/views/modules/base/resi.vue

@ -849,7 +849,8 @@ export default {
childGroup.itemList.forEach(async (item) => {
if (item.optionSourceType === 'remote') {
await this.getOptionsList(item.optionSourceValue).then((res) => {
item.options = res
item.options = this.getTreeData(res)
})
// console.log('')
}

6
src/views/modules/communityParty/members/crateForm.vue

@ -93,7 +93,7 @@
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" :autosize="{ minRows: 4, maxRows: 10}" :disabled="disabled" type="textarea" clearable class="input-width-textarea" placeholder="请输入内容"></el-input>
</el-form-item>
<div :style="'width:' + formItemWd" >
<div >
<div style="margin-top: 20px; text-align: center;">
<el-button size="small" @click="handleCancle">取消</el-button>
<el-button
@ -241,6 +241,7 @@ export default {
this.form = { ...val }
console.log('val----------in', val)
this.partyOrgs = val.orgPids.split(':')
console.log('partyOrgs-----', this.partyOrgs)
this.partymenberid = val.id
}
},
@ -305,6 +306,9 @@ export default {
if (icResiUserId) {
this.form.address = address
this.isAuto = true
} else {
this.form.address = ''
this.isAuto = false
}
}

Loading…
Cancel
Save