chore(projects): 增加vue,vueRouter的hook自动引入

This commit is contained in:
‘chen.home’ 2022-08-13 09:30:19 +08:00
parent 19bd363ac6
commit c74023901c
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ export default class createAxiosInstance {
switch (code) {
case this.backendConfig.successCode:
// code === 200 代表没有错误,直接返回约定的数据内容
return apiData[this.backendConfig.dataKey];
return apiData;
default:
// 不是正确的 Code,返回错误提示信息
return Promise.reject(new Error(`Error:${this.backendConfig.dataKey}`));

View File

@ -21,10 +21,10 @@ export const useAuthStore = defineStore('auth-store', {
/* 用户登录 */
async login(userName: string, password: string) {
this.loginLoading = true;
const data = await fetchLogin({ userName, password });
const { data } = await fetchLogin({ userName, password });
// 处理登录信息
this.handleAfterLogin(data as any);
await this.handleAfterLogin(data as any);
this.loginLoading = false;
},