Browse Source

fix[litemall-wx]: 修复手机号码格式验证。

Junling Bu 7 years ago
parent
commit
b82e38353e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      litemall-wx/pages/shopping/addressAdd/addressAdd.js

+ 1 - 1
litemall-wx/pages/shopping/addressAdd/addressAdd.js

@@ -287,7 +287,7 @@ Page({
       return false;
     }
 
-    if (!check.isValidPhone(this.data.mobile)) {
+    if (!check.isValidPhone(address.mobile)) {
       util.showErrorToast('手机号不正确');
       return false;
     }