|
@@ -11,7 +11,7 @@
|
|
|
}"
|
|
|
v-for="(optionitem, optionindex) in areaification"
|
|
|
:key="optionindex + 'option'"
|
|
|
- v-text="optionitem.alias"
|
|
|
+ v-text="optionitem.name"
|
|
|
@click="() => clickSelect('area', optionindex)"
|
|
|
></div>
|
|
|
</div>
|
|
@@ -31,7 +31,7 @@
|
|
|
v-for="(optionitem, optionindex) in areaification[searchActive.area]
|
|
|
.child"
|
|
|
:key="optionindex + 'optionSon'"
|
|
|
- v-text="optionitem.alias"
|
|
|
+ v-text="optionitem.name"
|
|
|
@click="() => clickSelect('areaSon', optionindex)"
|
|
|
></div>
|
|
|
</div>
|
|
@@ -184,14 +184,14 @@ onMounted(() => {
|
|
|
...v.districts.map((item, index) => {
|
|
|
return {
|
|
|
type: 'option',
|
|
|
- name: item.name,
|
|
|
+ name: item.alias,
|
|
|
id: index,
|
|
|
};
|
|
|
})
|
|
|
];
|
|
|
areaification.value.push({
|
|
|
type: 'option',
|
|
|
- name: v.name,
|
|
|
+ name: v.alias,
|
|
|
child: city,
|
|
|
id: i,
|
|
|
});
|