修改商家入驻商家分类没有数据的bug

This commit is contained in:
赵毅 2025-11-06 09:13:39 +08:00
parent 3ebbfa47bb
commit 403b869e98

View File

@ -400,7 +400,10 @@ export default {
}) })
}, },
getClassify() { getClassify() {
return request(apiArr.getMerChantCateList, "POST", {}).then(res => { const params = {
is_shop: 1,
}
return request(apiArr.getMerChantCateList, "POST", params).then(res => {
this.classify = res.rows this.classify = res.rows
}) })
}, },