| 123456789101112131415161718192021222324252627282930313233 |
- import config from "@/config"
- import http from "@/utils/request"
- export default {
- login: {
- url: `${config.API_URL}/login`,
- name: "-",
- post: async function(data={}){
- return await http.post(this.url, data);
- }
- },
- mobile: {
- url: `${config.API_URL}/login/mobile`,
- name: "-",
- post: async function(data={}){
- return await http.post(this.url, data);
- }
- },
- sms: {
- url: `${config.API_URL}/login/sms`,
- name: "-",
- post: async function(data={}){
- return await http.post(this.url, data);
- }
- },
- user: {
- url: `${config.API_URL}/profile`,
- name: "-",
- get: async function(data={}){
- return await http.get(this.url, data);
- }
- },
- }
|