Browse Source

关联物业

V1.0
mk 3 years ago
parent
commit
9914f87faf
  1. 6
      src/views/modules/base/community/communityForm.vue

6
src/views/modules/base/community/communityForm.vue

@ -93,7 +93,7 @@
prop="propertyId"
style="display: block">
<el-select class="u-edit-width-normal"
v-model="dataForm.propertyId"
v-model="propertyId"
placeholder="请选择"
filterable
clearable>
@ -225,6 +225,7 @@ export default {
neighborHoodId: '', //ID
quartersType: '0',
propertyId:'',
dataForm: {
neighborHoodName: '', // 50
agencyId: '', // ID
@ -270,9 +271,9 @@ export default {
console.log(row);
this.dataForm = JSON.parse(JSON.stringify(row))
this.dataForm.neighborHoodId = this.dataForm.id
this.dataForm.propertyId = this.dataForm.propertyList[0].id
this.neighborHoodId = this.dataForm.neighborHoodId
this.quartersType = this.dataForm.quartersType
this.propertyId = this.dataForm.propertyList[0].id
} else {
this.dataForm.latitude = latitude
@ -442,6 +443,7 @@ export default {
this.btnDisable = false
}, 10000)
this.dataForm.quartersType = this.quartersType
this.dataForm.propertyId = this.propertyId
this.$refs['ref_form'].validate((valid, messageObj) => {
if (!valid) {
app.util.validateRule(messageObj)

Loading…
Cancel
Save