feat(Area): getArea method filter placeholder (#4718)

This commit is contained in:
Jake 2019-10-14 19:14:05 +08:00 committed by neverland
parent 309a5bc071
commit 9beada5db0

View File

@ -127,6 +127,10 @@ export default sfc({
},
onAreaConfirm(values) {
if (values.some(value => !value.code)) {
Toast(t('areaEmpty'));
return;
}
this.showAreaPopup = false;
this.assignAreaValues();
this.$emit('change-area', values);