本帖最后由 mmc199 于 2022-3-16 20:38 编辑
和包app积分商城添加收货地址 反复弹出 请确认手机号格式! 网页版 https://m.jf.10086.cn/
https://m.jf.10086.cn/?vCode=《本次登录六位短信验证码》#/modules/pages/myAddress/editAddress/editAddress?type=select
问题js
https://m.jf.10086.cn/h5/js/53.d12e09d87f8b61596c6a.js
- if (a)
- if (/^[1]([3-9])[0-9]{9}$/.test(h) && h)
- if (o && i && c && r)
- if (p && !/^[0-9]{6}$/.test(p))
- this.toastModal("请确认邮编格式!");
- else {
- Object(S.r)({
- "si_n": "BJDZ_BCDZ",
- "si_x": "21"
- });
- var m = {
- "custName": a,
- "custTel": h,
- "addressInfo": o,
- "provinceCode": i,
- "cityCode": c,
- "countyCode": r,
- "postCode": p,
- "addrId": u
- };
- t[u ? "update" : "create"](m).then((function(t) {
- 200 === t.resultCode ? (Object(S.r)({
- "si_n": "BJDZ_BCDZ",
- "si_x": "99"
- }),
- e.toastModal("保存成功!"),
- S.cb.set("needRefresh", "true"),
- Object(S.U)()) : (Object(S.r)({
- "si_n": "BJDZ_BCDZ",
- "si_x": "-99"
- }),
- e.toastModal(t.resultMessage))
- }
- ))
- }
- else
- this.toastModal("请完善收货地址信息后提交!");
- else
- this.toastModal("请确认手机号格式!");
- else
- this.toastModal("请完善收货地址信息后提交!")
复制代码
第二个 if
- if (/^[1]([3-9])[0-9]{9}$/.test(h) && h)
复制代码
修改为应该
- if (!/^[1]([3-9])[0-9]{9}$/.test(h) && h)
复制代码
少了一个否定符号! |