Browse Source

修改登录端

xiaohaizhao 1 year ago
parent
commit
37d2991676

+ 1 - 1
pages/login/modules/account.vue

@@ -79,7 +79,7 @@ export default {
 			this.$Http.login({
 				"accountno": this.account.account,
 				"password": hexMD5(this.account.password),
-				"systemclient": "wechatsaletool"
+				"systemclient": "marketingtool"
 			}).then(res => {
 				console.log("账号密码登录", res)
 				this.loading = false;

+ 1 - 1
pages/login/modules/otherLogin.vue

@@ -50,7 +50,7 @@ export default {
                 success(res) {
                     that.$Http.loginbywechat({
                         wechat_code: res.code,
-                        "systemclient": "wechatsaletool"
+                        "systemclient": "marketingtool"
                     }).then(res => {
                         console.log("微信快捷登录", res)
                         if (that.cutoff(res.msg)) return;

+ 3 - 3
pages/login/modules/phone.vue

@@ -62,7 +62,7 @@ export default {
 				if (!CheckPhoneNumber(this.phoneNumber, '请输入正确的手机号码')) return;
 				this.$Http.getpassword({
 					"phonenumber": this.phoneNumber,
-					"systemclient": "wechatsaletool"
+					"systemclient": "marketingtool"
 				}).then(res => {
 					console.log("获取验证码", res)
 					uni.showToast({
@@ -106,7 +106,7 @@ export default {
 			this.$Http.plogin({
 				"phonenumber": this.phoneNumber,
 				"password": hexMD5(this.password),
-				"systemclient": "wechatsaletool"
+				"systemclient": "marketingtool"
 			}).then(res => {
 				console.log("验证码登录", res)
 				this.loading = false;
@@ -144,7 +144,7 @@ export default {
 		line-height: 30px;
 	}
 
-	.placeholder{
+	.placeholder {
 		font-size: 12px !important;
 	}