mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] Area: setValues in one micro task
This commit is contained in:
parent
695749b7cc
commit
2e28702b8c
@ -148,26 +148,30 @@ VantComponent({
|
|||||||
|
|
||||||
const stack = [];
|
const stack = [];
|
||||||
|
|
||||||
stack.push(picker.setColumnValues(0, province));
|
stack.push(picker.setColumnValues(0, province, false));
|
||||||
stack.push(picker.setColumnValues(1, city));
|
stack.push(picker.setColumnValues(1, city, false));
|
||||||
|
|
||||||
if (city.length && code.slice(2, 4) === '00') {
|
if (city.length && code.slice(2, 4) === '00') {
|
||||||
;[{ code }] = city;
|
;[{ code }] = city;
|
||||||
}
|
}
|
||||||
|
|
||||||
stack.push(
|
stack.push(
|
||||||
picker.setColumnValues(2, this.getList('county', code.slice(0, 4)))
|
picker.setColumnValues(
|
||||||
|
2,
|
||||||
|
this.getList('county', code.slice(0, 4)),
|
||||||
|
false
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
return Promise.all(stack)
|
stack.push(
|
||||||
.then(() =>
|
picker.setIndexes([
|
||||||
picker.setIndexes([
|
this.getIndex('province', code),
|
||||||
this.getIndex('province', code),
|
this.getIndex('city', code),
|
||||||
this.getIndex('city', code),
|
this.getIndex('county', code)
|
||||||
this.getIndex('county', code)
|
])
|
||||||
])
|
);
|
||||||
)
|
|
||||||
.catch(() => {});
|
return Promise.all(stack).catch(() => {});
|
||||||
},
|
},
|
||||||
|
|
||||||
getValues() {
|
getValues() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user