| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 | <template>	<view class="ssq adffc">		<view class="box">			<view class="box-top adfac">				<view class="box-top-btn qx" @click="handleCancel">取消</view>				<view class="box-top-title">{{title}}</view>				<view class="box-top-btn qd" @click="handleConfirm">确定</view>			</view>			<picker-view :value="pickerValue" @change="handlePickerChange" class="picker-view">			  <!-- 省份列 -->			  <picker-view-column>			    <view			      class="picker-item"			      :class="{ 'selected-item': pickerValue[0] === index }"			      v-for="(province, index) in provinces"			      :key="province.name"			    >			      {{ province.name }}			    </view>			  </picker-view-column>			  <!-- 城市列 -->			  <picker-view-column>			    <view			      class="picker-item"			      :class="{ 'selected-item': pickerValue[1] === index }"			      v-for="(city, index) in cities"			      :key="city.name"			    >			      {{ city.name }}			    </view>			  </picker-view-column>			  <!-- 区县列 -->			  <picker-view-column>			    <view			      class="picker-item"			      :class="{ 'selected-item': pickerValue[2] === index }"			      v-for="(area, index) in areas"			      :key="area.name"			    >			      {{ area.name }}			    </view>			  </picker-view-column>			</picker-view>		</view>	</view>	</template><script>	import { cityData, hotCities } from './city-data.js';	export default {		props:{			title:{				typeof:String,				default:'所属地区'			}		},		data(){			return {				provinces:cityData,				cities:[],				areas:[],				pickerValue:[0,0,0]			}		},		computed:{			selectedProvince:function(){				return this.provinces[this.pickerValue[0]] || {}			},			selectedCity:function(){				return this.cities[this.pickerValue[1]] || {}			},			selectedArea:function(){				return this.areas[this.pickerValue[2]] || {}			}		},		mounted() {			this.initialize()		},		methods:{			handlePickerChange(e){				const newPickerValue = e.detail.value;				const [provinceIndex, cityIndex, areaIndex] = newPickerValue;				const oldProvinceIndex = this.pickerValue[0];				const oldCityIndex = this.pickerValue[1];								if (provinceIndex !== oldProvinceIndex) {				  this.cities = this.provinces[provinceIndex].children;				  this.areas = this.cities[0]?.children || [];				  this.pickerValue = [provinceIndex, 0, 0];				} else if (cityIndex !== oldCityIndex) {				  // 更新地区列表,并将地区索引重置为0				  this.areas = this.cities[cityIndex]?.children || [];				  this.pickerValue = [provinceIndex, cityIndex, 0];				} else {				  this.pickerValue = newPickerValue;				}			},			initialize(){				this.cities = this.provinces[0]?.children || [];				this.areas = this.cities[0]?.children || [];			},			handleCancel(){				this.$emit('cancel')			},			handleConfirm(){				this.$emit('confirm',this.pickerValue)			},		}	}</script><style scoped lang="scss">	.ssq{		position: fixed;		left: 0;		right: 0;		top: 0;		bottom: 0;		background: rgba(0, 0, 0, .5);		justify-content: flex-end;		z-index: 1001;				.box{			background: #FFFFFF;			border-radius: 24rpx 24rpx 0 0;			&-top{				width: 100%;				height: 84rpx;				&-btn{					width: 120rpx;					font-size: 30rpx;					text-align: center;					line-height: 42rpx;					&.qx{						color: #909193;					}					&.qd{						color: #3c9cff;					}				}				&-title{					flex: 1;					font-size: 32rpx;					color: #303133;					text-align: center;					line-height: 42rpx;				}			}		}	}		.picker-view {	  width: 100%;	  height: 380rpx;	  margin: 40rpx 0 80rpx;	}		.picker-item {	  display: flex;	  align-items: center;	  justify-content: center;	  font-size: 36rpx;	  color: #303133;	  transition: all 0.2s;	  	  &.selected-item {	    font-size: 36rpx;		font-weight: bold;	    color: #303133;	  }	}</style>
 |