loading增加定制属性,可自行配置 (#1683)

* feature:增加区域loading功能

* feature:增加修改loading配置
This commit is contained in:
奇淼(piexlmax
2024-03-20 10:44:21 +08:00
committed by GitHub
parent d4db16b501
commit d4b9c2c97b
5 changed files with 25 additions and 30 deletions

View File

@@ -15,11 +15,10 @@ export const login = (data) => {
// @Produce application/json
// @Param data body {username:"string",password:"string"}
// @Router /base/captcha [post]
export const captcha = (data) => {
export const captcha = () => {
return service({
url: '/base/captcha',
method: 'post',
data: data
method: 'post'
})
}