fix(AddressEdit): choose overseas failure when configuring placeholer (#4769)

This commit is contained in:
Jake 2019-10-18 11:51:16 +08:00 committed by neverland
parent 9ebabb0c0b
commit 190cd7eba4
3 changed files with 6 additions and 2 deletions

View File

@ -2,7 +2,6 @@
// This file is auto gererated by build/build-entry.js
export default {
'changelog.en-US': () => import('../markdown/changelog.en-US.md'),
'changelog.generated': () => import('../markdown/changelog.generated.md'),
'changelog.zh-CN': () => import('../markdown/changelog.zh-CN.md'),
'contribution.zh-CN': () => import('../markdown/contribution.zh-CN.md'),
'design.zh-CN': () => import('../markdown/design.zh-CN.md'),

View File

@ -127,6 +127,8 @@ export default sfc({
},
onAreaConfirm(values) {
values = values.filter(value => !!value);
if (values.some(value => !value.code)) {
Toast(t('areaEmpty'));
return;

View File

@ -137,7 +137,10 @@ export default sfc({
// parse output columns data
parseOutputValues(values) {
return values.map((value = {}, index) => {
return values.map((value, index) => {
// save undefined value
if (!value) return value;
value = JSON.parse(JSON.stringify(value));
if (!value.code || value.name === this.columnsPlaceholder[index]) {
value.code = '';