Prechádzať zdrojové kódy

调试账号密码登录完成

yuxingxing 2 rokov pred
rodič
commit
e19fa1961a

+ 3 - 2
api/user.js

@@ -7,7 +7,8 @@ import request from "@/utils/request.js";
  * 
  */
 export function getLoginAccount(data) {
-	return request.post('/v1/login_account',data,{
+	let url = "username="+data.username+"&password="+data.password
+	return request.post('/v1/login_account?'+url,null,{
 		noAuth: true
 	});
 }
@@ -17,7 +18,7 @@ export function getLoginAccount(data) {
  * 
  */
 export function getUserInfo() {
-	return request.get('mock/user');
+	return request.get('v1/userApp-detailById');
 }
 
 /**

+ 3 - 1
config/app.js

@@ -14,6 +14,8 @@ module.exports = {
 
 	// 以下配置在不做二开的前提下,不需要做任何的修改
 	HEADER: {
+		'Authorization': 'Basic YXBwOmFwcF9zZWNyZXQ=',
+		'Tenant-Id': '000000',
 		'content-type': 'application/json',
 		//#ifdef H5
 		'Form-type': navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1 ? 'wechat' : 'h5',
@@ -26,7 +28,7 @@ module.exports = {
 		//#endif
 	},
 	// 回话密钥名称 请勿修改此配置
-	TOKENNAME: 'Authori-zation',
+	TOKENNAME: 'Blade-Auth',
 	// 缓存时间 0 永久
 	EXPIRE: 0,
 	//分页最多显示条数

+ 2 - 2
pages/users/components/login_mobile/index.vue

@@ -123,8 +123,8 @@
 				}).then(res => {
 					console.log(res);
 					this.$store.commit('LOGIN', {
-						token: res.data.token,
-						time: time
+						token: res.data.access_token,
+						time: res.data.expires_in
 					});
 					this.getUserInfo();
 				})