This commit is contained in:
A1300399510
2024-01-05 18:20:39 +08:00
parent 8fac6121c2
commit bb91a032e9
75 changed files with 2121 additions and 1204 deletions

View File

@@ -10,7 +10,7 @@ axios.defaults.withCredentials = true
axios.interceptors.request.use( //响应拦截
async config => {
// 开发时登录用的,可以直接替换小程序的 authorization
config['headers']['authorization'] = process.env.NODE_ENV !== "production" && "2lfrtq7h3ge634pl4ptlu2pbh2"
config['headers']['authorization'] = process.env.NODE_ENV !== "production" && "b89c4e5a1a61dca2c8f2ff21407fa210"
// config['headers']['authorization'] = "2lfrtq7h3ge634pl4ptlu2pbh2"
return config;
},