123456789101112131415161718192021 |
- "use strict";
- const sheep_request_index = require("../../request/index.js");
- const PointApi = {
- // 获得用户积分记录分页
- getPointRecordPage: (params) => {
- if (params.addStatus === void 0) {
- delete params.addStatus;
- }
- const queryString = Object.keys(params).map((key) => encodeURIComponent(key) + "=" + params[key]).join("&");
- return sheep_request_index.request({
- url: `/member/point/record/page?${queryString}`,
- method: "GET"
- });
- }
- };
- const __vite_glob_0_6 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
- __proto__: null,
- default: PointApi
- }, Symbol.toStringTag, { value: "Module" }));
- exports.PointApi = PointApi;
- exports.__vite_glob_0_6 = __vite_glob_0_6;
|