diff --git a/manifest.json b/manifest.json
index d5942f3ca8f882d2781c1d7192ff448092403e02..70c8cbaada1a2af99f4e3a9432f2a3aba6fbd2de 100755
--- a/manifest.json
+++ b/manifest.json
@@ -51,7 +51,7 @@
       "mode": "history",
       "base": "/uni"
     },
-    "publicPath": "https://dbc-static.oss-cn-beijing.aliyuncs.com/dbc-shop/uni/test/1.0.13/",
+    "publicPath": "https://dbc-static.oss-cn-beijing.aliyuncs.com/dbc-shop/uni/mirror/1.0.13/",
     "optimization": {
       "treeShaking": {
         "enable": true
diff --git a/pages/setinfo/components/changeLoginPass.vue b/pages/setinfo/components/changeLoginPass.vue
index 72333c644950bec7f1a70f643aa5c35997265cbd..96a8333aa4b5968704026a37386ca7e1e2952918 100644
--- a/pages/setinfo/components/changeLoginPass.vue
+++ b/pages/setinfo/components/changeLoginPass.vue
@@ -33,7 +33,7 @@
 		},
 		methods: {
 			checkPass() {
-				const reg = /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{6,}$/;
+				const reg = /^[0-9a-zA-Z_]{6,}$/;
 				if(this.new_password !== this.new_password_repeat) {
 					uni.showToast({
 						title: '两次密码输入不一致',
@@ -43,7 +43,7 @@
 				}
 				if(!reg.test(this.new_password)) {
 					uni.showToast({
-						title: '密码至少包含字母/数字,长度不小于6位',
+						title: '密码由字母、数字或下划线组成,长度不小于6位',
 						icon: 'none',
 						duration: 2000
 					});