仪表盘
版本库
文件存储
活动
搜索
登录
main
/
smart-web
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
导入数据点
gaoshp
2025-04-01
1bda49a073da3c6f32c1a9057f04a40c6d8b7537
[smart-web.git]
/
src
/
api
/
model
/
auth.js
1
2
3
4
5
6
7
8
9
10
11
12
import config from "@/config"
import http from "@/utils/request"
export default {
token: {
url: `${config.API_URL}/token`,
name: "登录获取TOKEN",
post: async function(data={}){
return await http.post(this.url, data);
}
}
}