Files
Vue_dbui/vue-ydui/example/routers/cityselect.vue
2024-09-27 00:57:27 +08:00

50 lines
1.7 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<yd-layout title="CitySelect">
<yd-cell-group title="默认调用" class="demo-small-pitch">
<yd-cell-item arrow>
<span slot="left">所在地区</span>
<input slot="right" type="text" @click.stop="show1 = true" v-model="model1" readonly placeholder="请选择收货地址">
</yd-cell-item>
</yd-cell-group>
<yd-cell-group title="设置默认值">
<yd-cell-item arrow>
<span slot="left">所在地区</span>
<input slot="right" type="text" @click.stop="show2 = true" v-model="model2" readonly placeholder="请选择收货地址">
</yd-cell-item>
</yd-cell-group>
<yd-cityselect v-model="show1" :callback="result1" :items="district"></yd-cityselect>
<yd-cityselect v-model="show2" :callback="result2" :items="district" provance="新疆" city="乌鲁木齐市" area="天山区"></yd-cityselect>
</yd-layout>
</template>
<script type="text/babel">
import District from 'ydui-district/dist/jd_province_city_area_id';
export default {
data() {
return {
show1: false,
show2: false,
model1: '',
model2: '新疆 乌鲁木齐市 天山区',
district: District
}
},
methods: {
result1(ret) {
console.log(ret);
this.model1 = ret.itemName1 + ' ' + ret.itemName2 + ' ' + ret.itemName3;
},
result2(ret) {
console.log(ret);
this.model2 = ret.itemName1 + ' ' + ret.itemName2 + ' ' + ret.itemName3;
}
}
}
</script>