绿满眶商城微信小程序-uniapp
peng
2025-07-08 1172c0ff85963a0f3b8fe5212082462b9ce0b1bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * 小程序商户端API
 */
import { http, Method } from "@/utils/request.js";
 
import api from "@/config/api.js";
 
/**
 * 小程序商户端获取店铺经营的分类
 * 
 * @param params
 */
 export function getMyActivityList() {
  return http.request({
    url: "/lmk/supplier/allCategery",
    method: Method.GET,
    needToken: true,
  });
}