Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
11d3f395
提交
11d3f395
authored
2月 26, 2021
作者:
Vben
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: ensure to request the interface correctly
上级
a821d9a3
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
11 行增加
和
19 行删除
+11
-19
account.ts
src/api/demo/account.ts
+1
-3
error.ts
src/api/demo/error.ts
+1
-3
select.ts
src/api/demo/select.ts
+2
-2
table.ts
src/api/demo/table.ts
+1
-3
menu.ts
src/api/sys/menu.ts
+1
-3
user.ts
src/api/sys/user.ts
+3
-4
Axios.ts
src/utils/http/axios/Axios.ts
+1
-0
config.d.ts
types/config.d.ts
+1
-1
没有找到文件。
src/api/demo/account.ts
浏览文件 @
11d3f395
import
{
defHttp
}
from
'/@/utils/http/axios'
;
import
{
GetAccountInfoModel
}
from
'./model/accountModel'
;
const
{
get
}
=
defHttp
;
enum
Api
{
ACCOUNT_INFO
=
'/account/getAccountInfo'
,
}
// Get personal center-basic settings
export
const
accountInfoApi
=
()
=>
get
<
GetAccountInfoModel
>
({
url
:
Api
.
ACCOUNT_INFO
});
export
const
accountInfoApi
=
()
=>
defHttp
.
get
<
GetAccountInfoModel
>
({
url
:
Api
.
ACCOUNT_INFO
});
src/api/demo/error.ts
浏览文件 @
11d3f395
import
{
defHttp
}
from
'/@/utils/http/axios'
;
const
{
get
}
=
defHttp
;
enum
Api
{
// The address does not exist
Error
=
'/error'
,
...
...
@@ -11,4 +9,4 @@ enum Api {
* @description: Trigger ajax error
*/
export
const
fireErrorApi
=
()
=>
get
({
url
:
Api
.
Error
});
export
const
fireErrorApi
=
()
=>
defHttp
.
get
({
url
:
Api
.
Error
});
src/api/demo/select.ts
浏览文件 @
11d3f395
import
{
defHttp
}
from
'/@/utils/http/axios'
;
import
{
DemoOptionsGetResultModel
}
from
'./model/optionsModel'
;
const
{
get
}
=
defHttp
;
enum
Api
{
OPTIONS_LIST
=
'/select/getDemoOptions'
,
...
...
@@ -9,4 +8,5 @@ enum Api {
/**
* @description: Get sample options value
*/
export
const
optionsListApi
=
()
=>
get
<
DemoOptionsGetResultModel
>
({
url
:
Api
.
OPTIONS_LIST
});
export
const
optionsListApi
=
()
=>
defHttp
.
get
<
DemoOptionsGetResultModel
>
({
url
:
Api
.
OPTIONS_LIST
});
src/api/demo/table.ts
浏览文件 @
11d3f395
import
{
defHttp
}
from
'/@/utils/http/axios'
;
import
{
DemoParams
,
DemoListGetResultModel
}
from
'./model/tableModel'
;
const
{
get
}
=
defHttp
;
enum
Api
{
DEMO_LIST
=
'/table/getDemoList'
,
}
...
...
@@ -12,7 +10,7 @@ enum Api {
*/
export
const
demoListApi
=
(
params
:
DemoParams
)
=>
get
<
DemoListGetResultModel
>
({
defHttp
.
get
<
DemoListGetResultModel
>
({
url
:
Api
.
DEMO_LIST
,
params
,
headers
:
{
...
...
src/api/sys/menu.ts
浏览文件 @
11d3f395
import
{
defHttp
}
from
'/@/utils/http/axios'
;
import
{
getMenuListByIdParams
,
getMenuListByIdParamsResultModel
}
from
'./model/menuModel'
;
const
{
get
}
=
defHttp
;
enum
Api
{
GetMenuListById
=
'/getMenuListById'
,
}
...
...
@@ -12,5 +10,5 @@ enum Api {
*/
export
const
getMenuListById
=
(
params
:
getMenuListByIdParams
)
=>
{
return
get
<
getMenuListByIdParamsResultModel
>
({
url
:
Api
.
GetMenuListById
,
params
});
return
defHttp
.
get
<
getMenuListByIdParamsResultModel
>
({
url
:
Api
.
GetMenuListById
,
params
});
};
src/api/sys/user.ts
浏览文件 @
11d3f395
...
...
@@ -7,7 +7,6 @@ import {
}
from
'./model/userModel'
;
import
{
ErrorMessageMode
}
from
'/@/utils/http/axios/types'
;
const
{
post
,
get
}
=
defHttp
;
enum
Api
{
Login
=
'/login'
,
GetUserInfoById
=
'/getUserInfoById'
,
...
...
@@ -18,7 +17,7 @@ enum Api {
* @description: user login api
*/
export
function
loginApi
(
params
:
LoginParams
,
mode
:
ErrorMessageMode
=
'modal'
)
{
return
post
<
LoginResultModel
>
(
return
defHttp
.
post
<
LoginResultModel
>
(
{
url
:
Api
.
Login
,
params
,
...
...
@@ -33,14 +32,14 @@ export function loginApi(params: LoginParams, mode: ErrorMessageMode = 'modal')
* @description: getUserInfoById
*/
export
function
getUserInfoById
(
params
:
GetUserInfoByUserIdParams
)
{
return
get
<
GetUserInfoByUserIdModel
>
({
return
defHttp
.
get
<
GetUserInfoByUserIdModel
>
({
url
:
Api
.
GetUserInfoById
,
params
,
});
}
export
function
getPermCodeByUserId
(
params
:
GetUserInfoByUserIdParams
)
{
return
get
<
string
[]
>
({
return
defHttp
.
get
<
string
[]
>
({
url
:
Api
.
GetPermCodeByUserId
,
params
,
});
...
...
src/utils/http/axios/Axios.ts
浏览文件 @
11d3f395
...
...
@@ -195,6 +195,7 @@ export class VAxios {
}
conf
=
this
.
supportFormData
(
conf
);
return
new
Promise
((
resolve
,
reject
)
=>
{
this
.
axiosInstance
.
request
<
any
,
AxiosResponse
<
Result
>>
(
conf
)
...
...
types/config.d.ts
浏览文件 @
11d3f395
...
...
@@ -9,7 +9,7 @@ import {
import
{
CacheTypeEnum
}
from
'/@/enums/cacheEnum'
;
import
type
{
LocaleType
}
from
'/@/locales/types'
;
import
{
ThemeMode
}
from
'../
../
build/config/themeConfig'
;
import
{
ThemeMode
}
from
'../build/config/themeConfig'
;
export
interface
MenuSetting
{
bgColor
:
string
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论