1
lzhe
2024-06-05 fc15f2e904fade9e1505bad70b29829d7d99c124
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);
        }
    }
}