zuozhengqing
2023-12-18 fa523e19c4e89c3a08aff41fe5acb57392a0f0aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import request from "@/common/untils/request.js"
 
// 获取验证码
export function getCaptcha() {
  return request({
    url: "/api/base/captcha",
    method: "post"
  })
}
 
// 登录
export function login(data) {
  return request({
    url: "/api/base/login",
    method: "post",
    data
  })
}