Browse Source

16.59

develop
zhangjy 4 years ago
parent
commit
90115fd116
  1. 6
      src/views/houseList/page/index.vue
  2. 8
      src/views/sale/index.vue

6
src/views/houseList/page/index.vue

@ -18,9 +18,9 @@
>
<el-option
v-for="item in nameList"
:key="item.value"
:label="item.label"
:value="item.value"
:key="item.housingEstateId"
:label="item.name"
:value="item.housingEstateId"
>
</el-option>
</el-select>

8
src/views/sale/index.vue

@ -181,9 +181,9 @@
>
<el-option
v-for="item in nameList"
:key="item.value"
:label="item.label"
:value="item.value"
:key="item.housingEstateId"
:label="item.name"
:value="item.housingEstateId"
>
</el-option>
</el-select>
@ -494,7 +494,7 @@ export default {
submitForm(formName) {
for (let i=0;i<this.nameList.length;i++){
if (this.ruleForm.name==this.nameList[i].name){
this.$set(this.params,'housingEstatesId',this.nameList[i].housingEstatesId)
this.$set(this.params,'housingEstatesId',this.nameList[i].housingEstateId)
}
}
this.$set(this.params,'name',this.ruleForm.name)

Loading…
Cancel
Save