From 0fb5eab0d6787922d3e915543e95fe5073d767ff Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期四, 13 三月 2025 08:48:13 +0800 Subject: [PATCH] 派了车就不能再派车了 派车的时候选择新的送货时间和填写注意事项 完成 --- CY_ECommercePlatform/CY.WebForm/Pages/business/IntentionCustomerEdit.aspx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/IntentionCustomerEdit.aspx b/CY_ECommercePlatform/CY.WebForm/Pages/business/IntentionCustomerEdit.aspx index 175023f..67bdbf1 100644 --- a/CY_ECommercePlatform/CY.WebForm/Pages/business/IntentionCustomerEdit.aspx +++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/IntentionCustomerEdit.aspx @@ -48,14 +48,14 @@ }); $("#txtOfficersMobileD").blur(function () { var Mobile = $.trim($("#txtMobile").val()); - var reg = /^1[3|5|8][0-9]{9}$/; + var reg = /^[0-9]{11}$/; if (reg.test($("#txtOfficersMobileD").val()) && Mobile == "") { $("#txtMobile").val($("#txtOfficersMobileD").val()); } }); $("#txtBusinessMobile").blur(function () { var Mobile = $.trim($("#txtMobile").val()); - var reg = /^1[3|5|8][0-9]{9}$/; + var reg = /^[0-9]{11}$/; if (reg.test($("#txtBusinessMobile").val()) && Mobile == "") { $("#txtMobile").val($("#txtBusinessMobile").val()); } -- Gitblit v1.9.1