lzhe
2024-06-14 963a2313f4f8959715293d38f69894078150d508
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);
        }
    }
}