| 123456789101112131415161718192021222324252627 |
- import https from "@/plugins/luch-request_0.0.7/request";
- //获取商家小菊
- export const getSjXj = data => {
- return https.get("/xj/get-sj-xj", data);
- };
- //获取所有小菊
- export const getAllXj = data => {
- return https.get("/xj/get-all-xj", data);
- };
- export const getFilterXj = data => {
- return https.get("/xj/get-filter-xj", data);
- };
- export const ReplaceXj = data => {
- return https.get("/shop-ext/replace-xj", data);
- };
- export const clearAll = data => {
- return https.get("/xj/clear-all", data);
- };
- export const batchAdd = data => {
- return https.post("/xj/batch-add", data);
- };
|