1
lzhe
2024-05-12 f00e6c3b881c67ef3651d4f812230188af01faca
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);
        }
    }
}