Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
ops_2024_vue
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
ops_2024_vue
Commits
f4797a18
Commit
f4797a18
authored
Mar 29, 2024
by
heduo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(hd): 封装数据对接请求
parent
d8fc6a14
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
111 additions
and
10 deletions
+111
-10
.env.development
.env.development
+3
-0
.env.production
.env.production
+3
-0
.env.test
.env.test
+3
-0
src/api/sys/user.ts
src/api/sys/user.ts
+9
-1
src/enums/cacheEnum.ts
src/enums/cacheEnum.ts
+2
-0
src/enums/httpEnum.ts
src/enums/httpEnum.ts
+1
-0
src/hooks/setting/index.ts
src/hooks/setting/index.ts
+2
-0
src/settings/encryptionSetting.ts
src/settings/encryptionSetting.ts
+1
-1
src/store/modules/user.ts
src/store/modules/user.ts
+14
-2
src/utils/auth/index.ts
src/utils/auth/index.ts
+4
-2
src/utils/cache/persistent.ts
src/utils/cache/persistent.ts
+2
-0
src/utils/env.ts
src/utils/env.ts
+2
-0
src/utils/http/axios/index.ts
src/utils/http/axios/index.ts
+61
-4
types/config.d.ts
types/config.d.ts
+4
-0
No files found.
.env.development
View file @
f4797a18
...
@@ -20,3 +20,6 @@ VITE_GLOB_UPLOAD_URL=/attach
...
@@ -20,3 +20,6 @@ VITE_GLOB_UPLOAD_URL=/attach
# Interface prefix
# Interface prefix
VITE_GLOB_API_URL_PREFIX=
VITE_GLOB_API_URL_PREFIX=
#tmallab url
VITE_GLOB_TMALLAB_URL='http://8.130.74.127:8088/tmallab2022j'
.env.production
View file @
f4797a18
...
@@ -31,3 +31,6 @@ VITE_USE_PWA = false
...
@@ -31,3 +31,6 @@ VITE_USE_PWA = false
# Is it compatible with older browsers
# Is it compatible with older browsers
VITE_LEGACY = false
VITE_LEGACY = false
#tmallab url
VITE_GLOB_TMALLAB_URL='https://www.tmallab.cn/tmallab2022j/'
.env.test
View file @
f4797a18
...
@@ -34,3 +34,6 @@ VITE_USE_PWA = false
...
@@ -34,3 +34,6 @@ VITE_USE_PWA = false
# Is it compatible with older browsers
# Is it compatible with older browsers
VITE_LEGACY
=
false
VITE_LEGACY
=
false
#tmallab url
VITE_GLOB_TMALLAB_URL
=
'http://8.130.74.127:8088/tmallab2022j/'
src/api/sys/user.ts
View file @
f4797a18
import
{
defHttp
}
from
'
/@/utils/http/axios
'
;
import
{
defHttp
,
tmallabHttp
}
from
'
/@/utils/http/axios
'
;
import
{
LoginParams
,
LoginResultModel
,
GetUserInfoModel
}
from
'
./model/userModel
'
;
import
{
LoginParams
,
LoginResultModel
,
GetUserInfoModel
}
from
'
./model/userModel
'
;
import
{
ErrorMessageMode
}
from
'
/#/axios
'
;
import
{
ErrorMessageMode
}
from
'
/#/axios
'
;
...
@@ -8,6 +8,7 @@ enum Api {
...
@@ -8,6 +8,7 @@ enum Api {
Logout
=
'
/login/logout
'
,
Logout
=
'
/login/logout
'
,
GetUserInfo
=
'
/login/detail
'
,
GetUserInfo
=
'
/login/detail
'
,
GetPermCode
=
'
/getPermCode
'
,
GetPermCode
=
'
/getPermCode
'
,
tmallabLoginApi
=
'
/system/login
'
,
}
}
/**
/**
...
@@ -39,3 +40,10 @@ export function getPermCode() {
...
@@ -39,3 +40,10 @@ export function getPermCode() {
export
function
doLogout
()
{
export
function
doLogout
()
{
return
defHttp
.
post
({
url
:
Api
.
Logout
});
return
defHttp
.
post
({
url
:
Api
.
Logout
});
}
}
export
function
tmallabLoginApi
(
params
:
any
)
{
return
tmallabHttp
.
post
({
url
:
Api
.
tmallabLoginApi
,
params
,
});
}
src/enums/cacheEnum.ts
View file @
f4797a18
...
@@ -25,6 +25,8 @@ export const APP_LOCAL_CACHE_KEY = 'COMMON__LOCAL__KEY__';
...
@@ -25,6 +25,8 @@ export const APP_LOCAL_CACHE_KEY = 'COMMON__LOCAL__KEY__';
// base global session key
// base global session key
export
const
APP_SESSION_CACHE_KEY
=
'
COMMON__SESSION__KEY__
'
;
export
const
APP_SESSION_CACHE_KEY
=
'
COMMON__SESSION__KEY__
'
;
export
const
TMALLAB_TOKEN_KEY
=
'
TMALLAB__TOKEN__
'
;
export
enum
CacheTypeEnum
{
export
enum
CacheTypeEnum
{
SESSION
,
SESSION
,
LOCAL
,
LOCAL
,
...
...
src/enums/httpEnum.ts
View file @
f4797a18
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
*/
*/
export
enum
ResultEnum
{
export
enum
ResultEnum
{
SUCCESS
=
20000
,
SUCCESS
=
20000
,
TMALLAB_SUCCESS
=
200
,
ERROR
=
10010
,
ERROR
=
10010
,
TIMEOUT
=
30013
,
TIMEOUT
=
30013
,
TYPE
=
'
success
'
,
TYPE
=
'
success
'
,
...
...
src/hooks/setting/index.ts
View file @
f4797a18
...
@@ -10,6 +10,7 @@ export const useGlobSetting = (): Readonly<GlobConfig> => {
...
@@ -10,6 +10,7 @@ export const useGlobSetting = (): Readonly<GlobConfig> => {
VITE_GLOB_APP_SHORT_NAME
,
VITE_GLOB_APP_SHORT_NAME
,
VITE_GLOB_API_URL_PREFIX
,
VITE_GLOB_API_URL_PREFIX
,
VITE_GLOB_UPLOAD_URL
,
VITE_GLOB_UPLOAD_URL
,
VITE_GLOB_TMALLAB_URL
,
}
=
getAppEnvConfig
();
}
=
getAppEnvConfig
();
if
(
!
/
[
a-zA-Z
\_]
*/
.
test
(
VITE_GLOB_APP_SHORT_NAME
))
{
if
(
!
/
[
a-zA-Z
\_]
*/
.
test
(
VITE_GLOB_APP_SHORT_NAME
))
{
...
@@ -25,6 +26,7 @@ export const useGlobSetting = (): Readonly<GlobConfig> => {
...
@@ -25,6 +26,7 @@ export const useGlobSetting = (): Readonly<GlobConfig> => {
shortName
:
VITE_GLOB_APP_SHORT_NAME
,
shortName
:
VITE_GLOB_APP_SHORT_NAME
,
urlPrefix
:
VITE_GLOB_API_URL_PREFIX
,
urlPrefix
:
VITE_GLOB_API_URL_PREFIX
,
uploadUrl
:
VITE_GLOB_UPLOAD_URL
,
uploadUrl
:
VITE_GLOB_UPLOAD_URL
,
tmallabUrl
:
VITE_GLOB_TMALLAB_URL
,
};
};
return
glob
as
Readonly
<
GlobConfig
>
;
return
glob
as
Readonly
<
GlobConfig
>
;
};
};
src/settings/encryptionSetting.ts
View file @
f4797a18
...
@@ -10,4 +10,4 @@ export const cacheCipher = {
...
@@ -10,4 +10,4 @@ export const cacheCipher = {
};
};
// Whether the system cache is encrypted using aes
// Whether the system cache is encrypted using aes
export
const
enableStorageEncryption
=
!
isDevMode
();
export
const
enableStorageEncryption
=
!
isDevMode
();
//该变量决定本地存储是否需要加密
src/store/modules/user.ts
View file @
f4797a18
...
@@ -4,10 +4,10 @@ import { defineStore } from 'pinia';
...
@@ -4,10 +4,10 @@ import { defineStore } from 'pinia';
import
{
store
}
from
'
/@/store
'
;
import
{
store
}
from
'
/@/store
'
;
import
{
RoleEnum
}
from
'
/@/enums/roleEnum
'
;
import
{
RoleEnum
}
from
'
/@/enums/roleEnum
'
;
import
{
PageEnum
}
from
'
/@/enums/pageEnum
'
;
import
{
PageEnum
}
from
'
/@/enums/pageEnum
'
;
import
{
ROLES_KEY
,
TOKEN_KEY
,
USER_INFO_KEY
}
from
'
/@/enums/cacheEnum
'
;
import
{
ROLES_KEY
,
TOKEN_KEY
,
USER_INFO_KEY
,
TMALLAB_TOKEN_KEY
}
from
'
/@/enums/cacheEnum
'
;
import
{
getAuthCache
,
setAuthCache
}
from
'
/@/utils/auth
'
;
import
{
getAuthCache
,
setAuthCache
}
from
'
/@/utils/auth
'
;
import
{
GetUserInfoModel
,
LoginParams
}
from
'
/@/api/sys/model/userModel
'
;
import
{
GetUserInfoModel
,
LoginParams
}
from
'
/@/api/sys/model/userModel
'
;
import
{
doLogout
,
getUserInfo
,
loginApi
}
from
'
/@/api/sys/user
'
;
import
{
doLogout
,
getUserInfo
,
loginApi
,
tmallabLoginApi
}
from
'
/@/api/sys/user
'
;
import
{
useI18n
}
from
'
/@/hooks/web/useI18n
'
;
import
{
useI18n
}
from
'
/@/hooks/web/useI18n
'
;
import
{
useMessage
}
from
'
/@/hooks/web/useMessage
'
;
import
{
useMessage
}
from
'
/@/hooks/web/useMessage
'
;
import
{
router
}
from
'
/@/router
'
;
import
{
router
}
from
'
/@/router
'
;
...
@@ -54,6 +54,9 @@ export const useUserStore = defineStore({
...
@@ -54,6 +54,9 @@ export const useUserStore = defineStore({
getToken
():
string
{
getToken
():
string
{
return
this
.
token
||
getAuthCache
<
string
>
(
TOKEN_KEY
);
return
this
.
token
||
getAuthCache
<
string
>
(
TOKEN_KEY
);
},
},
getTmallabToken
():
string
{
return
getAuthCache
<
string
>
(
TMALLAB_TOKEN_KEY
);
},
getRoleList
():
RoleEnum
[]
{
getRoleList
():
RoleEnum
[]
{
return
this
.
roleList
.
length
>
0
?
this
.
roleList
:
getAuthCache
<
RoleEnum
[]
>
(
ROLES_KEY
);
return
this
.
roleList
.
length
>
0
?
this
.
roleList
:
getAuthCache
<
RoleEnum
[]
>
(
ROLES_KEY
);
},
},
...
@@ -69,6 +72,9 @@ export const useUserStore = defineStore({
...
@@ -69,6 +72,9 @@ export const useUserStore = defineStore({
this
.
token
=
info
?
info
:
''
;
// for null or undefined value
this
.
token
=
info
?
info
:
''
;
// for null or undefined value
setAuthCache
(
TOKEN_KEY
,
info
);
setAuthCache
(
TOKEN_KEY
,
info
);
},
},
setTmallabToken
(
info
:
string
|
undefined
)
{
setAuthCache
(
TMALLAB_TOKEN_KEY
,
info
);
},
setRoleList
(
roleList
:
RoleEnum
[])
{
setRoleList
(
roleList
:
RoleEnum
[])
{
this
.
roleList
=
roleList
;
this
.
roleList
=
roleList
;
setAuthCache
(
ROLES_KEY
,
roleList
);
setAuthCache
(
ROLES_KEY
,
roleList
);
...
@@ -111,6 +117,12 @@ export const useUserStore = defineStore({
...
@@ -111,6 +117,12 @@ export const useUserStore = defineStore({
return
Promise
.
reject
(
error
);
return
Promise
.
reject
(
error
);
}
}
},
},
//数据对接模拟登录
async
tmallabSimulationLogin
(
params
:
{
loginName
:
string
;
password
:
string
}):
Promise
<
any
>
{
const
data
=
await
tmallabLoginApi
(
params
);
this
.
setTmallabToken
(
data
.
token
);
return
data
;
},
async
afterLoginAction
(
goHome
?:
boolean
):
Promise
<
GetUserInfoModel
|
null
>
{
async
afterLoginAction
(
goHome
?:
boolean
):
Promise
<
GetUserInfoModel
|
null
>
{
if
(
!
this
.
getToken
)
return
null
;
if
(
!
this
.
getToken
)
return
null
;
// get user info
// get user info
...
...
src/utils/auth/index.ts
View file @
f4797a18
import
{
Persistent
,
BasicKeys
}
from
'
/@/utils/cache/persistent
'
;
import
{
Persistent
,
BasicKeys
}
from
'
/@/utils/cache/persistent
'
;
import
{
CacheTypeEnum
}
from
'
/@/enums/cacheEnum
'
;
import
{
CacheTypeEnum
}
from
'
/@/enums/cacheEnum
'
;
import
projectSetting
from
'
/@/settings/projectSetting
'
;
import
projectSetting
from
'
/@/settings/projectSetting
'
;
import
{
TOKEN_KEY
}
from
'
/@/enums/cacheEnum
'
;
import
{
TOKEN_KEY
,
TMALLAB_TOKEN_KEY
}
from
'
/@/enums/cacheEnum
'
;
const
{
permissionCacheType
}
=
projectSetting
;
const
{
permissionCacheType
}
=
projectSetting
;
const
isLocal
=
permissionCacheType
===
CacheTypeEnum
.
LOCAL
;
const
isLocal
=
permissionCacheType
===
CacheTypeEnum
.
LOCAL
;
...
@@ -9,7 +9,9 @@ const isLocal = permissionCacheType === CacheTypeEnum.LOCAL;
...
@@ -9,7 +9,9 @@ const isLocal = permissionCacheType === CacheTypeEnum.LOCAL;
export
function
getToken
()
{
export
function
getToken
()
{
return
getAuthCache
(
TOKEN_KEY
);
return
getAuthCache
(
TOKEN_KEY
);
}
}
export
function
getTmallabToken
()
{
return
getAuthCache
(
TMALLAB_TOKEN_KEY
)
||
''
;
}
export
function
getAuthCache
<
T
>
(
key
:
BasicKeys
)
{
export
function
getAuthCache
<
T
>
(
key
:
BasicKeys
)
{
const
fn
=
isLocal
?
Persistent
.
getLocal
:
Persistent
.
getSession
;
const
fn
=
isLocal
?
Persistent
.
getLocal
:
Persistent
.
getSession
;
return
fn
(
key
)
as
T
;
return
fn
(
key
)
as
T
;
...
...
src/utils/cache/persistent.ts
View file @
f4797a18
...
@@ -13,6 +13,7 @@ import {
...
@@ -13,6 +13,7 @@ import {
APP_LOCAL_CACHE_KEY
,
APP_LOCAL_CACHE_KEY
,
APP_SESSION_CACHE_KEY
,
APP_SESSION_CACHE_KEY
,
MULTIPLE_TABS_KEY
,
MULTIPLE_TABS_KEY
,
TMALLAB_TOKEN_KEY
,
}
from
'
/@/enums/cacheEnum
'
;
}
from
'
/@/enums/cacheEnum
'
;
import
{
DEFAULT_CACHE_TIME
}
from
'
/@/settings/encryptionSetting
'
;
import
{
DEFAULT_CACHE_TIME
}
from
'
/@/settings/encryptionSetting
'
;
import
{
toRaw
}
from
'
vue
'
;
import
{
toRaw
}
from
'
vue
'
;
...
@@ -20,6 +21,7 @@ import { pick, omit } from 'lodash-es';
...
@@ -20,6 +21,7 @@ import { pick, omit } from 'lodash-es';
interface
BasicStore
{
interface
BasicStore
{
[
TOKEN_KEY
]:
string
|
number
|
null
|
undefined
;
[
TOKEN_KEY
]:
string
|
number
|
null
|
undefined
;
[
TMALLAB_TOKEN_KEY
]:
string
|
number
|
null
|
undefined
;
[
USER_INFO_KEY
]:
UserInfo
;
[
USER_INFO_KEY
]:
UserInfo
;
[
ROLES_KEY
]:
string
[];
[
ROLES_KEY
]:
string
[];
[
LOCK_INFO_KEY
]:
LockInfo
;
[
LOCK_INFO_KEY
]:
LockInfo
;
...
...
src/utils/env.ts
View file @
f4797a18
...
@@ -28,6 +28,7 @@ export function getAppEnvConfig() {
...
@@ -28,6 +28,7 @@ export function getAppEnvConfig() {
VITE_GLOB_APP_SHORT_NAME
,
VITE_GLOB_APP_SHORT_NAME
,
VITE_GLOB_API_URL_PREFIX
,
VITE_GLOB_API_URL_PREFIX
,
VITE_GLOB_UPLOAD_URL
,
VITE_GLOB_UPLOAD_URL
,
VITE_GLOB_TMALLAB_URL
,
}
=
ENV
;
}
=
ENV
;
if
(
!
/^
[
a-zA-Z
\_]
*$/
.
test
(
VITE_GLOB_APP_SHORT_NAME
))
{
if
(
!
/^
[
a-zA-Z
\_]
*$/
.
test
(
VITE_GLOB_APP_SHORT_NAME
))
{
...
@@ -42,6 +43,7 @@ export function getAppEnvConfig() {
...
@@ -42,6 +43,7 @@ export function getAppEnvConfig() {
VITE_GLOB_APP_SHORT_NAME
,
VITE_GLOB_APP_SHORT_NAME
,
VITE_GLOB_API_URL_PREFIX
,
VITE_GLOB_API_URL_PREFIX
,
VITE_GLOB_UPLOAD_URL
,
VITE_GLOB_UPLOAD_URL
,
VITE_GLOB_TMALLAB_URL
,
};
};
}
}
...
...
src/utils/http/axios/index.ts
View file @
f4797a18
...
@@ -10,7 +10,7 @@ import { useGlobSetting } from '/@/hooks/setting';
...
@@ -10,7 +10,7 @@ import { useGlobSetting } from '/@/hooks/setting';
import
{
useMessage
}
from
'
/@/hooks/web/useMessage
'
;
import
{
useMessage
}
from
'
/@/hooks/web/useMessage
'
;
import
{
RequestEnum
,
ResultEnum
,
ContentTypeEnum
}
from
'
/@/enums/httpEnum
'
;
import
{
RequestEnum
,
ResultEnum
,
ContentTypeEnum
}
from
'
/@/enums/httpEnum
'
;
import
{
isString
}
from
'
/@/utils/is
'
;
import
{
isString
}
from
'
/@/utils/is
'
;
import
{
getToken
}
from
'
/@/utils/auth
'
;
import
{
getToken
,
getTmallabToken
}
from
'
/@/utils/auth
'
;
import
{
setObjToUrlParams
,
deepMerge
}
from
'
/@/utils
'
;
import
{
setObjToUrlParams
,
deepMerge
}
from
'
/@/utils
'
;
import
{
useErrorLogStoreWithOut
}
from
'
/@/store/modules/errorLog
'
;
import
{
useErrorLogStoreWithOut
}
from
'
/@/store/modules/errorLog
'
;
import
{
useI18n
}
from
'
/@/hooks/web/useI18n
'
;
import
{
useI18n
}
from
'
/@/hooks/web/useI18n
'
;
...
@@ -43,7 +43,7 @@ const transform: AxiosTransform = {
...
@@ -43,7 +43,7 @@ const transform: AxiosTransform = {
// 错误的时候返回
// 错误的时候返回
const
{
data
}
=
res
;
const
{
data
}
=
res
;
console
.
log
(
'
=============
'
,
res
);
//
console.log('=============', res);
if
(
!
data
)
{
if
(
!
data
)
{
// return '[HTTP] Request has no return value';
// return '[HTTP] Request has no return value';
throw
new
Error
(
t
(
'
sys.api.apiRequestFailed
'
));
throw
new
Error
(
t
(
'
sys.api.apiRequestFailed
'
));
...
@@ -52,7 +52,9 @@ const transform: AxiosTransform = {
...
@@ -52,7 +52,9 @@ const transform: AxiosTransform = {
const
{
code
,
data
:
result
,
msg
:
message
}
=
data
;
const
{
code
,
data
:
result
,
msg
:
message
}
=
data
;
// 这里逻辑可以根据项目进行修改
// 这里逻辑可以根据项目进行修改
const
hasSuccess
=
data
&&
Reflect
.
has
(
data
,
'
code
'
)
&&
code
===
ResultEnum
.
SUCCESS
;
const
hasSuccess
=
(
data
&&
Reflect
.
has
(
data
,
'
code
'
)
&&
code
===
ResultEnum
.
SUCCESS
)
||
ResultEnum
.
TMALLAB_SUCCESS
;
if
(
hasSuccess
)
{
if
(
hasSuccess
)
{
return
result
;
return
result
;
}
}
...
@@ -80,7 +82,7 @@ const transform: AxiosTransform = {
...
@@ -80,7 +82,7 @@ const transform: AxiosTransform = {
}
else
if
(
options
.
errorMessageMode
===
'
message
'
)
{
}
else
if
(
options
.
errorMessageMode
===
'
message
'
)
{
createMessage
.
error
(
timeoutMsg
);
createMessage
.
error
(
timeoutMsg
);
}
}
console
.
log
(
'
=============22222
'
,
timeoutMsg
,
options
);
//
console.log('=============22222', timeoutMsg, options);
throw
new
Error
(
timeoutMsg
||
t
(
'
sys.api.apiRequestFailed
'
));
throw
new
Error
(
timeoutMsg
||
t
(
'
sys.api.apiRequestFailed
'
));
},
},
...
@@ -139,12 +141,17 @@ const transform: AxiosTransform = {
...
@@ -139,12 +141,17 @@ const transform: AxiosTransform = {
requestInterceptors
:
(
config
,
options
)
=>
{
requestInterceptors
:
(
config
,
options
)
=>
{
// 请求之前处理config
// 请求之前处理config
const
token
=
getToken
();
const
token
=
getToken
();
const
tmallabToken
=
getTmallabToken
();
if
(
token
&&
(
config
as
Recordable
)?.
requestOptions
?.
withToken
!==
false
)
{
if
(
token
&&
(
config
as
Recordable
)?.
requestOptions
?.
withToken
!==
false
)
{
// jwt token
// jwt token
(
config
as
Recordable
).
headers
.
Authorization
=
options
.
authenticationScheme
(
config
as
Recordable
).
headers
.
Authorization
=
options
.
authenticationScheme
?
`
${
options
.
authenticationScheme
}
${
token
}
`
?
`
${
options
.
authenticationScheme
}
${
token
}
`
:
token
;
:
token
;
}
}
if
(
tmallabToken
&&
(
config
as
Recordable
)?.
requestOptions
?.
withTmallabToken
!==
false
)
{
// jwt token
(
config
as
Recordable
).
headers
.
Token
=
tmallabToken
;
}
return
config
;
return
config
;
},
},
...
@@ -240,7 +247,57 @@ function createAxios(opt?: Partial<CreateAxiosOptions>) {
...
@@ -240,7 +247,57 @@ function createAxios(opt?: Partial<CreateAxiosOptions>) {
),
),
);
);
}
}
function
createTmallabAxios
(
opt
?:
Partial
<
CreateAxiosOptions
>
)
{
return
new
VAxios
(
deepMerge
(
{
// See https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication#authentication_schemes
// authentication schemes,e.g: Bearer
// authenticationScheme: 'Bearer',
authenticationScheme
:
''
,
timeout
:
0
,
// 基础接口地址
// baseURL: globSetting.apiUrl,
headers
:
{
'
Content-Type
'
:
ContentTypeEnum
.
JSON
},
// 如果是form-data格式
// headers: { 'Content-Type': ContentTypeEnum.FORM_URLENCODED },
// 数据处理方式
transform
,
// 配置项,下面的选项都可以在独立的接口请求中覆盖
requestOptions
:
{
// 默认将prefix 添加到url
joinPrefix
:
true
,
// 是否返回原生响应头 比如:需要获取响应头时使用该属性
isReturnNativeResponse
:
false
,
// 需要对返回数据进行处理
isTransformResponse
:
true
,
// post请求的时候添加参数到url
joinParamsToUrl
:
false
,
// 格式化提交参数时间
formatDate
:
true
,
// 消息提示类型
// errorMessageMode: 'message',
// 接口地址
apiUrl
:
globSetting
.
tmallabUrl
,
// 接口拼接地址
urlPrefix
:
urlPrefix
,
// 是否加入时间戳
joinTime
:
false
,
// 忽略重复请求
ignoreCancelToken
:
true
,
// 是否携带token
withToken
:
false
,
//是否携带数据对接token
withTmallabToken
:
true
,
},
},
opt
||
{},
),
);
}
export
const
defHttp
=
createAxios
();
export
const
defHttp
=
createAxios
();
export
const
tmallabHttp
=
createTmallabAxios
();
// other api url
// other api url
// export const otherHttp = createAxios({
// export const otherHttp = createAxios({
...
...
types/config.d.ts
View file @
f4797a18
...
@@ -146,6 +146,8 @@ export interface GlobConfig {
...
@@ -146,6 +146,8 @@ export interface GlobConfig {
urlPrefix
?:
string
;
urlPrefix
?:
string
;
// Project abbreviation
// Project abbreviation
shortName
:
string
;
shortName
:
string
;
//tmallab url
tmallabUrl
:
string
;
}
}
export
interface
GlobEnvConfig
{
export
interface
GlobEnvConfig
{
// Site title
// Site title
...
@@ -158,4 +160,6 @@ export interface GlobEnvConfig {
...
@@ -158,4 +160,6 @@ export interface GlobEnvConfig {
VITE_GLOB_APP_SHORT_NAME
:
string
;
VITE_GLOB_APP_SHORT_NAME
:
string
;
// Upload url
// Upload url
VITE_GLOB_UPLOAD_URL
?:
string
;
VITE_GLOB_UPLOAD_URL
?:
string
;
//tmallab url
VITE_GLOB_TMALLAB_URL
:
string
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment