Skip to content

微信小程序-省市(区)地址选择联动 🌋

License

Notifications You must be signed in to change notification settings

jingshsh/wx_selectArea

 
 

Repository files navigation

Codacy Badge Dependency status Build Status GitHub issues

wx_selectArea

地址联动选择器采用微信小程序的 picker-view 组件

模板引入

提供 template 模板引入

  1. 引入wxmlwxss
// example.wxml
<import src="../../template/index.wxml"/>
<template is="areaPicker" data="{{...areaPicker}}" />

// example.wxss
@import '../../template/index.wxss';
  1. 组件初始化
// example.js

import initAreaPicker, { getSelectedAreaData } from '../../template/index';
Page({
	onShow: () => {
    initAreaPicker({
      // hideDistrict: true, // 是否隐藏区县选择栏,默认显示
    });
  },
	getSelecedData() {
		console.table(getSelectedAreaData()); // 提供`getSelectedAreaData`方法,返回当前选择的省市区信息组成的数组
	}
});

截图

旧版

小程序不支持 picker-view 组件时,用 scroll-view 模拟的联动选择器(不再维护)

欢迎反馈...

About

微信小程序-省市(区)地址选择联动 🌋

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%