mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Area): can't select some oversea country (#4195)
This commit is contained in:
parent
d2b28432cd
commit
664c1dd29c
@ -110,6 +110,7 @@ export default createComponent({
|
||||
}
|
||||
|
||||
code = code.slice(0, compareNum);
|
||||
|
||||
for (let i = 0; i < list.length; i++) {
|
||||
if (list[i].code.slice(0, compareNum) === code) {
|
||||
return i;
|
||||
@ -138,7 +139,7 @@ export default createComponent({
|
||||
picker.setColumnValues(0, province);
|
||||
picker.setColumnValues(1, city);
|
||||
|
||||
if (city.length && code.slice(2, 4) === '00') {
|
||||
if (city.length && code.slice(2, 4) === '00' && !this.isOverseaCode(code)) {
|
||||
[{ code }] = city;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user