文章来源:https://www.toymoban.com/news/detail-662980.html
省市区 picker文章来源地址https://www.toymoban.com/news/detail-662980.html
template
<picker mode="region" :value="date" class="u-w-440" @change="bindTimeChange">
<u--input
border="bottom"
class="u-fb u-f-s-28"
placeholder="请选择省市区"
type="text" readonly v-model="provinceName"
suffixIcon="arrow-right"
suffixIconStyle="color: #B6B6B6"/>
</picker>
script
// 获取省市区
bindTimeChange(e) {
this.province = e.detail.value[0];
this.city = e.detail.value[1];
this.district = e.detail.value[2];
this.provinceName = e.detail.value[0] + e.detail.value[1] + e.detail.value[2];
},
到了这里,关于【uniapp】picker mode=“region“ 最简单的省市区 三级联动的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!