index.js 338 B

1234567891011121314
  1. import https from "@/plugins/luch-request_0.0.7/request";
  2. //平台花材列表
  3. export const ptItemList = data => {
  4. return https.get("/pt-item/list", data);
  5. };
  6. export const getPtItemDetail = data => {
  7. return https.get("/pt-item/detail", data);
  8. };
  9. export const changeAuth = data => {
  10. return https.get("/pt-item/change-auth", data);
  11. };