Authored by 李靖

新增地址增加手机号校验

... ... @@ -71,6 +71,7 @@ $usernameInput.bind('input propertychange', function() {
// 提交表单请求
$addressForm.on('submit', function() {
let username = $usernameInput.val().replace(/(^\s+)|(\s+$)/g, '');
let phone = $(this).find('[name="mobile"]').val();
if (isSubmiting) {
return false;
... ... @@ -95,6 +96,12 @@ $addressForm.on('submit', function() {
tip.show('手机号不能为空');
return false;
}
if (!(/^1[34578]\d{9}$/.test(phone))) {
tip.show('请填写正确的手机号');
return false;
}
if (!$(this).find('[name="area_code"]').val() || !$(this).find('[name="area"]').val() ||
$(this).find('[name="area_code"]').val().length < 6) {
tip.show('省市区不能为空');
... ...