Blame view

components/mpvue-citypicker/mpvueCityPicker.vue 5.5 KB
4b045f7c   刘淇   江阴初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
  <template>
  	<div class="mpvue-picker">
  		<div :class="{'pickerMask':showPicker}" @click="maskClick" catchtouchmove="true"></div>
  		<div class="mpvue-picker-content " :class="{'mpvue-picker-view-show':showPicker}">
  			<div class="mpvue-picker__hd" catchtouchmove="true">
  				<div class="mpvue-picker__action" @click="pickerCancel">取消</div>
  				<div class="mpvue-picker__action" :style="{color:themeColor}" @click="pickerConfirm">确定</div>
  			</div>
  			<picker-view indicator-style="height: 40px;" class="mpvue-picker-view" :value="pickerValue" @change="pickerChange">
  				<block>
  					<picker-view-column>
  						<div class="picker-item" v-for="(item,index) in provinceDataList" :key="index">{{item.label}}</div>
  					</picker-view-column>
  					<picker-view-column>
  						<div class="picker-item" v-for="(item,index) in cityDataList" :key="index">{{item.label}}</div>
  					</picker-view-column>
  					<picker-view-column>
  						<div class="picker-item" v-for="(item,index) in areaDataList" :key="index">{{item.label}}</div>
  					</picker-view-column>
  				</block>
  			</picker-view>
  		</div>
  	</div>
  </template>
  
  <script>
  	import provinceData from './city-data/province.js';
  	import cityData from './city-data/city.js';
  	import areaData from './city-data/area.js';
  	export default {
  		data() {
  			return {
  				pickerValue: [0, 0, 0],
  				provinceDataList: provinceData,
  				cityDataList: cityData[0],
  				areaDataList: areaData[0][0],
  				/* 是否显示控件 */
  				showPicker: false,
  			};
  		},
  		created() {
  			this.init()
  		},
  		props: {
  			/* 默认值 */
  			pickerValueDefault: {
  				type: Array,
  				default () {
  					return [0, 0, 0]
  				}
  			},
  			/* 主题色 */
  			themeColor: String
  		},
  		watch: {
  			pickerValueDefault() {
  				this.init();
  			}
  		},
  		methods: {
  			init() {
  				this.handPickValueDefault(); // 对 pickerValueDefault 做兼容处理
  
  				const pickerValueDefault = this.pickerValueDefault
  
  				this.cityDataList = cityData[pickerValueDefault[0]];
  				this.areaDataList = areaData[pickerValueDefault[0]][pickerValueDefault[1]];
  				this.pickerValue = pickerValueDefault;
  			},
  			show() {
  				setTimeout(() => {
  					this.showPicker = true;
  				}, 0);
  			},
  			maskClick() {
  				this.pickerCancel();
  			},
  			pickerCancel() {
  				this.showPicker = false;
  				this._$emit('onCancel');
  			},
  			pickerConfirm(e) {
  				this.showPicker = false;
  				this._$emit('onConfirm');
  			},
  			showPickerView() {
  				this.showPicker = true;
  			},
  			handPickValueDefault() {
  				const pickerValueDefault = this.pickerValueDefault
  
  				let provinceIndex = pickerValueDefault[0]
  				let cityIndex = pickerValueDefault[1]
  				const areaIndex = pickerValueDefault[2]
  				if (
  					provinceIndex !== 0 ||
  					cityIndex !== 0 ||
  					areaIndex !== 0
  				) {
  					if (provinceIndex > provinceData.length - 1) {
  						this.pickerValueDefault[0] = provinceIndex = provinceData.length - 1;
  					}
  					if (cityIndex > cityData[provinceIndex].length - 1) {
  						this.pickerValueDefault[1] = cityIndex = cityData[provinceIndex].length - 1;
  					}
  					if (areaIndex > areaData[provinceIndex][cityIndex].length - 1) {
  						this.pickerValueDefault[2] = areaData[provinceIndex][cityIndex].length - 1;
  					}
  				}
  			},
  			pickerChange(e) {
  				let changePickerValue = e.mp.detail.value;
  				if (this.pickerValue[0] !== changePickerValue[0]) {
  					// 第一级发生滚动
  					this.cityDataList = cityData[changePickerValue[0]];
  					this.areaDataList = areaData[changePickerValue[0]][0];
  					changePickerValue[1] = 0;
  					changePickerValue[2] = 0;
  				} else if (this.pickerValue[1] !== changePickerValue[1]) {
  					// 第二级滚动
  					this.areaDataList =
  						areaData[changePickerValue[0]][changePickerValue[1]];
  					changePickerValue[2] = 0;
  				}
  				this.pickerValue = changePickerValue;
  				this._$emit('onChange');
  			},
  			_$emit(emitName) {
  				let pickObj = {
  					label: this._getLabel(),
  					value: this.pickerValue,
  					cityCode: this._getCityCode()
  				};
  				this.$emit(emitName, pickObj);
  			},
  			_getLabel() {
  				let pcikerLabel =
  					this.provinceDataList[this.pickerValue[0]].label +
  					'-' +
  					this.cityDataList[this.pickerValue[1]].label +
  					'-' +
  					this.areaDataList[this.pickerValue[2]].label;
  				return pcikerLabel;
  			},
  			_getCityCode() {
  				return this.areaDataList[this.pickerValue[2]].value;
  			}
  		}
  	};
  </script>
  
  <style>
  	.pickerMask {
  		position: fixed;
  		z-index: 1000;
  		top: 0;
  		right: 0;
  		left: 0;
  		bottom: 0;
  		background: rgba(0, 0, 0, 0.6);
  	}
  
  	.mpvue-picker-content {
  		position: fixed;
  		bottom: 0;
  		left: 0;
  		width: 100%;
  		transition: all 0.3s ease;
  		transform: translateY(100%);
  		z-index: 3000;
  	}
  
  	.mpvue-picker-view-show {
  		transform: translateY(0);
  	}
  
  	.mpvue-picker__hd {
  		display: flex;
  		padding: 9px 15px;
  		background-color: #fff;
  		position: relative;
  		text-align: center;
  		font-size: 17px;
  	}
  
  	.mpvue-picker__hd:after {
  		content: ' ';
  		position: absolute;
  		left: 0;
  		bottom: 0;
  		right: 0;
  		height: 1px;
  		border-bottom: 1px solid #e5e5e5;
  		color: #e5e5e5;
  		transform-origin: 0 100%;
  		transform: scaleY(0.5);
  	}
  
  	.mpvue-picker__action {
  		display: block;
  		flex: 1;
  		color: #1aad19;
  	}
  
  	.mpvue-picker__action:first-child {
  		text-align: left;
  		color: #888;
  	}
  
  	.mpvue-picker__action:last-child {
  		text-align: right;
  	}
  
  	.picker-item {
  		text-align: center;
  		line-height: 40px;
  		text-overflow: ellipsis;
  		white-space: nowrap;
  		font-size: 16px;
  	}
  
  	.mpvue-picker-view {
  		position: relative;
  		bottom: 0;
  		left: 0;
  		width: 100%;
  		height: 238px;
  		background-color: rgba(255, 255, 255, 1);
  	}
  </style>