mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(AddressEdit): check addressDetail only when showDetail is true (#5803)
This commit is contained in:
parent
e89baa12ae
commit
3ff8eee270
@ -168,7 +168,15 @@ export default createComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
onSave() {
|
onSave() {
|
||||||
const items = ['name', 'tel', 'areaCode', 'addressDetail'];
|
const items = ['name', 'tel'];
|
||||||
|
|
||||||
|
if (this.showArea) {
|
||||||
|
items.push('areaCode');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.showDetail) {
|
||||||
|
items.push('addressDetail');
|
||||||
|
}
|
||||||
|
|
||||||
if (this.showPostal) {
|
if (this.showPostal) {
|
||||||
items.push('postalCode');
|
items.push('postalCode');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user