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