[improvement] Area: setValues in one micro task

This commit is contained in:
rex 2019-02-18 13:33:30 +08:00 committed by GitHub
parent 695749b7cc
commit 2e28702b8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -148,26 +148,30 @@ VantComponent({
const stack = [];
stack.push(picker.setColumnValues(0, province));
stack.push(picker.setColumnValues(1, city));
stack.push(picker.setColumnValues(0, province, false));
stack.push(picker.setColumnValues(1, city, false));
if (city.length && code.slice(2, 4) === '00') {
;[{ code }] = city;
}
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)
.then(() =>
stack.push(
picker.setIndexes([
this.getIndex('province', code),
this.getIndex('city', code),
this.getIndex('county', code)
])
)
.catch(() => {});
);
return Promise.all(stack).catch(() => {});
},
getValues() {