更新记录
0.0.1(2024-06-07)
下载此版本
根据 https://ext.dcloud.net.cn/plugin?id=4189 改造,组件不使用云函数
平台兼容性
uni-app
Vue2 |
Vue3 |
Chrome |
Safari |
app-vue |
app-nvue |
Android |
iOS |
鸿蒙 |
√ |
√ |
√ |
√ |
√ |
- |
- |
- |
- |
微信小程序 |
支付宝小程序 |
抖音小程序 |
百度小程序 |
快手小程序 |
京东小程序 |
鸿蒙元服务 |
QQ小程序 |
飞书小程序 |
快应用-华为 |
快应用-联盟 |
√ |
- |
- |
- |
- |
- |
- |
- |
- |
√ |
√ |
其他
使用说明
import areaSelect from '@/components/area-choose/area-choose.vue'
components: {
areaSelect
},
<!-- vue -->
<area-select ref='areaChoose' @confirm='areaConfirm'></area-select>
<!-- js -->
//打开
areaChoose() {
this.$refs.areaChoose.show()
},
//地址信息返回回调
areaConfirm(e) {
console.log(e);
this.e=e.address;
},