| 12345678910111213 |
- import https from "@/plugins/luch-request_0.0.7/request";
- export const getPdGoodsInfo = data => {
- return https.get("/pd-goods/get-info", data);
- };
- export const getPdGoodsList = data => {
- return https.get("/pd-goods/list", data);
- };
- export const createGdGoods = data => {
- return https.post("/pd-goods/create-order", data);
- };
|