1
lzhe
2024-05-24 c9ce5e7f9a9ef52c66baf4f8a6e8d9e48b7cb251
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);
        }
    }
}