index.js 330 B

12345678910111213
  1. import https from "@/plugins/luch-request_0.0.7/request";
  2. export const getPdGoodsInfo = data => {
  3. return https.get("/pd-goods/get-info", data);
  4. };
  5. export const getPdGoodsList = data => {
  6. return https.get("/pd-goods/list", data);
  7. };
  8. export const createGdGoods = data => {
  9. return https.post("/pd-goods/create-order", data);
  10. };