1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

小程序 生活物资下拉刷新也刷新分类

This commit is contained in:
程序员小墨 2023-04-14 14:02:16 +08:00
parent 84920d28d1
commit 29cadb9a11

View File

@ -192,5 +192,27 @@ Page({
// })
})
})();
(async () => {
let goodCategoryListPromise = goodService.getGoodCategoryList()
Promise.all([
goodCategoryListPromise,
]).then(data => {
let goodCategoryList = data[0]
console.log("goodCategoryList", goodCategoryList)
goodCategoryList.unshift({
id: -1,
categoryName: "全部分类",
order: 0
})
console.log("goodCategoryList", goodCategoryList)
this.setData({
sidebarList: goodCategoryList,
})
// wx.nextTick(() => {
// })
})
})();
}
})