Browse Source

修改新增业务员时密码强度不够的提示内容。

陈龙 1 week ago
parent
commit
263a1b04ae

+ 4 - 4
src/Befri.Goldhoo/Befri.Goldhoo.Mobile.MvcUI/Content/themes/Client/version1/management/management.shopMember.js

@@ -2,8 +2,8 @@
  * Management ShopMember
  * 管理中心 业务员管理 程序
  * 基于 jQuery 和 SUI 库开发的程序,适用于 Web 应用程序
- * 当前版本:1.0.11
- * 更新日期:2021/12/2
+ * 当前版本:1.0.12
+ * 更新日期:2026/1/4
  * 贡献:陈龙
  * 依赖:
  *   jQuery
@@ -302,8 +302,8 @@ var App = new Application();
             }
 
             // 验证密码是否包含特殊字符
-            else if (!SUI.Validate.Password(data.password, 6, 50)) {
-                message += '</br>密码不能包含特殊字符。';
+            else if (!SUI.Validate.Password(data.Password, 6, 50)) {
+                message += '</br>密码中必须包含字母、数字。';
                 result = false;
             }
         }

+ 1 - 1
src/Befri.Goldhoo/Befri.Goldhoo.Mobile.MvcUI/Views/Management/ShopMember.cshtml

@@ -11,7 +11,7 @@
     <script src="@Url.Content("~/Content/themes/SUI/extend/checkbox/checkbox.js")"></script>
     <link href="@Url.Content("~/Content/themes/SUI/extend/paging/themes/sui.paging." + Befri.Goldhoo.Mobile.MvcUI.WebConstants.THEMES + ".css")" rel="stylesheet" />
     <script src="@Url.Content("~/Content/themes/SUI/extend/paging/sui.paging.js")"></script>
-    <script src="@Url.Content("~/Content/themes/Client/version1/management/management.shopMember.js")?v=1.0.11"></script>
+    <script src="@Url.Content("~/Content/themes/Client/version1/management/management.shopMember.js")?v=1.0.12"></script>
     <script>
         // 新增账号地址
         Sys.Config.Add('CreateShopMemberUrl', '@Url.Content("~/Management/CreateShopMember")');