Fix:5234 【商城小程序】后台店铺分类添加超过 10 个类别,前端页面只展示前 10 个,多余分类展示缺失

This commit is contained in:
linxi
2026-05-11 14:29:46 +08:00
parent e982bc0595
commit bf31bf859e
+3 -1
View File
@@ -1243,7 +1243,9 @@ export default {
},
getsaleList() {
const params = {
countyFamousDataId: this.id
countyFamousDataId: this.id,
page: 1,
limit: 9999
}
getSaleList(params).then(res => {
this.saleList = [{name: '全部', id: ''}].concat(res.data || [])