| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import config from "@/config"
- import http from "@/utils/request"
- export default {
- list: {
- url: `${config.API_URL}/expert/list`,
- name: "-",
- get: async function(data={}){
- return await http.get(this.url, data);
- }
- },
- platform: {
- url: `${config.API_URL}/expert/platform`,
- name: "-",
- get: async function(data={}){
- return await http.get(this.url, data);
- }
- },
- save: {
- url: `${config.API_URL}/expert/save`,
- name: "-",
- post: async function(data={}){
- return await http.post(this.url, data);
- }
- },
- del: {
- url: `${config.API_URL}/expert/del`,
- name: "-",
- post: async function(data={}){
- return await http.post(this.url, data);
- }
- },
- batch: {
- url: `${config.API_URL}/expert/batch`,
- name: "-",
- post: async function(data={}){
- return await http.post(this.url, data);
- }
- }
- }
|