联调接口

This commit is contained in:
xuli3099
2025-08-12 13:43:21 +08:00
parent 74596473ab
commit f5717959ae
15 changed files with 293 additions and 114 deletions

View File

@@ -1,2 +1,8 @@
export const TOKEN_KEY = 'token';
export const AGREEWELCOME_KEY="agreewelcome"
export const AGREEWELCOME_KEY="agreewelcome";
// clientId 默认写2
export const CLIENT_ID=2;
// #区分内外网 //1-内网2-外网
export const NETWORK_ENV=1;

View File

@@ -10,9 +10,9 @@ export const RequestMethodsEnum = {
};
export const RequestCodeEnum = {
SUCCESS: 0, //成功
SUCCESS: 0 || 200, //成功
FAILED: -1, // 失败
TOKEN_INVALID: 10003 // TOKEN失效未登录
TOKEN_INVALID: 401 // TOKEN失效未登录
};
export const RequestErrMsgEnum = {