1234567891011121314151617181920 |
- "use strict";
- const sheep_request_index = require("../../request/index.js");
- const ActivityApi = {
- // 获得单个商品,近期参与的每个活动
- getActivityListBySpuId: (spuId) => {
- return sheep_request_index.request({
- url: "/promotion/activity/list-by-spu-id",
- method: "GET",
- params: {
- spuId
- }
- });
- }
- };
- const __vite_glob_0_22 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
- __proto__: null,
- default: ActivityApi
- }, Symbol.toStringTag, { value: "Module" }));
- exports.ActivityApi = ActivityApi;
- exports.__vite_glob_0_22 = __vite_glob_0_22;
|