uniapp四级联动地址选择器(带json数据末尾有链接)

<template>
	<view>
		<view class="list" :style="{width:width+'rpx',height:height+'rpx'}">
			<view class="name">收货地址</view>
			<picker class="picker" mode="multiSelector" :range="region" range-key="name" :value="regionIndex"
				@change="pickerChange" @columnchange="pickerColumnchange">
				<view class="pbox" :class="{'pbox_hover':regionStr != '请选择省市区'}">
					<view>{{regionStr}}</view>
					<text class="iconfont icon-you"></text>
				</view>
			</picker>
		</view>
	</view>
</template>
<script>
	import region from './chinaRegion.json'
	export default {
		data() {
			return {
				// 原数组
				oldRegion: region,
				// 处理后的数组
				region: [
					[],
					[],
					[],
					[]
				],
				// 选择省市区的下标Index  传则默认选中传递的
				regionIndex: [0, 0, 0, 0],

				// 选择的id
				// previnceId: 11,
				// cityId: 1101,
				// districtId: 110101,
				// countyId: 110101001

				// 省市区字符串
				regionStr: '请选择省/市/区/镇或县'
			};
		},
		props: {
			// 组件高度
			height: {
				type: [Number],
				default: 92
			},
			// 组件宽度
			width: {
				type: [Number],
				default: 710
			},
			// 省id
			previnceId: {
				type: [Number],
				default: 11
			},
			// 市辖区id
			cityId: {
				type: [Number],
				default: 1101
			},
			// 区id
			districtId: {
				type: [Number],
				default: 110101
			},
			// 县
			countyid: {
				type: [Number],
				default: 110101001
			},
			// 是否是为修改(true为修改)
			isRevise: {
				type: [Boolean],
				default: false
			}
		},
		methods: {
			pickerChange(e) {
				this.regionIndex = e.detail.value;
				this.regionStr = this.region[0][this.regionIndex[0]].name + ' ' + this.region[1][this.regionIndex[1]]
					.name + ' ' +
					this.region[2][this.regionIndex[2]].name + ' ' + this.region[3][this.regionIndex[3]].name;
                //组件传值
				this.$emit('region', [this.region[0][this.regionIndex[0]].name , this.region[1][this.regionIndex[1]].name,
					this.region[2][this.regionIndex[2]].name , this.region[3][this.regionIndex[3]].name]);

			},
			pickerColumnchange(e) {
				// console.log(e);
				// // 第几列滑动
				// console.log(e.detail.column);
				// // 第几列滑动的下标
				// console.log(e.detail.value)

				if (e.detail.column === 0) {
					// 声明城市数组
					let cityArr = [];
					let districtArr = [];
					let countyArr = []
					// 设置下标
					this.regionIndex = [e.detail.value, 0, 0, 0];
					// 改变市辖区列表
					this.region[1] = this.oldRegion[e.detail.value].children.map(item => {
						cityArr.push({
							name: item.name,
							code: item.code
						});
					})
					console.log('cityArr1', cityArr)
					this.$set(this.region, 1, cityArr);
					// 没有港澳台的详细地区信息 制空
					if(cityArr.length==0){
						this.$set(this.region, 2, cityArr);
						this.$set(this.region, 3, cityArr);
					}
					//因为港澳台没有地址信息,children会报错,所以有children的时候再渲染
					if (this.oldRegion[e.detail.value].children && this.oldRegion[e.detail.value].children[0]) {
						// 改变区列表
						this.oldRegion[e.detail.value].children[0].children.map(item => {
							districtArr.push({
								name: item.name,
								code: item.code
							});
						})
						console.log('districtArr1', districtArr)
						this.$set(this.region, 2, districtArr);
						//改变县镇列表
						this.oldRegion[e.detail.value].children[0].children[0].children.map(item => {
							countyArr.push({
								name: item.name,
								code: item.code
							});
						})
						this.$set(this.region, 3, countyArr);
						console.log('countyArr1', countyArr)
					}

				}
				if (e.detail.column === 1) {
					this.regionIndex[1] = e.detail.value;
					this.regionIndex[2] = 0;
					this.regionIndex[3] = 0;
					let districtArr = [];
					let countyArr = [];
					if (this.oldRegion[this.regionIndex[0]].children[this.regionIndex[1]]) {
						this.oldRegion[this.regionIndex[0]].children[this.regionIndex[1]].children.map(item => {
							districtArr.push({
								name: item.name,
								code: item.code
							});
						})
						this.$set(this.region, 2, districtArr);
						this.oldRegion[this.regionIndex[0]].children[this.regionIndex[1]].children[0].children.map(
							item => {
								countyArr.push({
									name: item.name,
									code: item.code
								});
							})
						this.$set(this.region, 3, countyArr);
					}

				}
				if (e.detail.column === 2) {
					this.regionIndex[2] = e.detail.value;
					this.regionIndex[3] = 0;
					let countyArr = [];
					if (this.oldRegion[this.regionIndex[0]].children[this.regionIndex[1]]) {
						this.oldRegion[this.regionIndex[0]].children[this.regionIndex[1]].children[this.regionIndex[2]]
							.children.map(item => {
								countyArr.push({
									name: item.name,
									code: item.code
								});
							})
						// console.log('countyArr3',countyArr)
						this.$set(this.region, 3, countyArr);
					}

				}
				if (e.detail.column === 3) {
					this.regionIndex[3] = e.detail.value;
				}
			}
		},
		created() {
			let provinceArr = [];
			let cityArr = [];
			let districtArr = [];
			//获取regin[]
			this.oldRegion.map((item, index) => {
				this.region[0].push({
					name: item.name,
					code: item.code
				});
				if (this.previnceId == item.code) {
					provinceArr = item.children;
					this.regionIndex[0] = index;
				}
			})
			provinceArr.map((item, index) => {
				this.region[1].push({
					name: item.name,
					code: item.code
				});
				if (this.cityId == item.code) {
					cityArr = item.children;
					this.regionIndex[1] = index;
				}
			})
			cityArr.map((item, index) => {
				this.region[2].push({
					name: item.name,
					code: item.code
				});
				if (this.districtId == item.code) {
					districtArr = item.children;
					this.regionIndex[2] = index;
				}
			})
			districtArr.map((item, index) => {
				this.region[3].push({
					name: item.name,
					code: item.code
				});
				if (this.countyId == item.code) {
					this.regionIndex[3] = index;
				}
			})
			if (this.isRevise) {
				this.regionStr = this.region[0][this.regionIndex[0]].name + ' ' +         this.region[1][this.regionIndex[1]]
					.name + ' ' +
					this.region[2][this.regionIndex[2]].name;
			} else {
				this.regionStr = '请选择省市区县';
			}
		}
	}
</script>

<style lang="scss">
	.list {
		// border-bottom: 1rpx solid #eee;
		padding: 0 0 0 18rpx;
		box-sizing: border-box;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		position: relative;
		
		.picker {
			height: 92rpx;
			width: ;
			.pbox {
				width: 100%;
				height: 92rpx;
				display: flex;
				flex-direction: row;
				align-items: center;
				justify-content: space-between;
				color: #808080;

				view {
					width: 100%;
					text-align: right;
				}

				.icon-you {
					font-size: 28rpx;
				}
			}

			.pbox_hover {
				color: #383838;
			}

		}

		.name {
			width: 168rpx;
			font-size: 32rpx;
			color: #383838;
		}

		.icon-you {
			font-size: 28rpx;
			color: #999999;
		}

		.input {
			flex: 1;
			height: 100%;
			line-height: 92rpx;
			color: #9080A1;
		}

		.textarea {
			flex: 1;
			height: 100%;
			color: #A9A9A9;
		}
	}
</style>

使用方法: 

我用的是选项式,可自行调整哦

<template>
    <Region :width="680" @region="resgclick" />
</template>


<script>
import Region from '../../components/k-region/k-region.vue'
export default{
    data(){
        return{
            addr:
        }
    },
    components:{Region},
    methods:{
        resgclick(ele) {
				console.log(ele, '选择的城市');
				ele.forEach(item => [
					this.addr += item
				])
				console.log(this.addr);
			},
    }
}
</script>

最终效果:

 

根据csdn某一位大佬的三级联动改的,有需求自取哈!

json地址放在这里:四级联动json: uniapp四级联动地址选择器

  • 2
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值