This commit is contained in:
sjk
2025-11-28 15:18:10 +08:00
parent ad4a600af9
commit 5683f35942
188 changed files with 53680 additions and 1062 deletions

View File

@@ -55,6 +55,9 @@ export function getCategoryList() {
wx.request({
url: `${config.apiBase}/products/categories`,
method: 'GET',
data: {
platform: 'miniprogram' // 指定平台为小程序
},
success: (res) => {
if (res.statusCode === 200 && res.data.code === 200) {
console.log('原始分类数据:', res.data.data);