地址联动选择器采用微信小程序的 picker-view
组件
提供 template
模板引入
// example.wxml
<import src="../../template/index.wxml"/>
<template is="areaPicker" data="{{...areaPicker}}" />
// example.wxss
@import '../../template/index.wxss';
import initAreaPicker, { getSelectedAreaData } from '../../template/index';
const conf = {
onShow: () => {
initAreaPicker();
},
};
Page(conf);
目前仅支持是否隐藏第三极选择栏,默认显示
import initAreaPicker from '../../template/index';
const conf = {
onShow: () => {
initAreaPicker({
hideDistrict: true,
});
},
};
Page(conf);
import { getSelectedAreaData } from '../../template/index';
const conf = {
btnClick() {
console.table(getSelectedAreaData());
},
};
Page(conf);
小程序前期不支持
picker-view
组件时,用scroll-view
模拟的联动选择器
欢迎反馈...