team.js 600 B

12345678910111213141516171819202122
  1. "use strict";
  2. const sheep_request_index = require("../../request/index.js");
  3. const TeamApi = {
  4. // 查询商品linkId
  5. getTeam: (params) => {
  6. return sheep_request_index.request({
  7. url: "/distri/share-path/getTeam",
  8. method: "GET",
  9. params,
  10. custom: {
  11. showLoading: true,
  12. showError: false
  13. }
  14. });
  15. }
  16. };
  17. const __vite_glob_0_2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
  18. __proto__: null,
  19. default: TeamApi
  20. }, Symbol.toStringTag, { value: "Module" }));
  21. exports.TeamApi = TeamApi;
  22. exports.__vite_glob_0_2 = __vite_glob_0_2;