最新楼层装修模块

This commit is contained in:
学习很差啦
2023-04-07 16:47:27 +08:00
parent 816d842a57
commit 1cbafbce25
19 changed files with 940 additions and 144 deletions

View File

@@ -53,11 +53,12 @@ export default {
params: { // 请求参数
pageNumber: 1,
pageSize: 100,
type: 'GOODS'
type: this.$route.query.type || 'GOODS'
},
spinShow: false // 加载状态
};
},
methods: {
getList () { // 获取收藏列表
this.spinShow = true
@@ -123,6 +124,7 @@ export default {
mounted () {
if (this.homePage) this.params.pageSize = 5;
this.getList()
}
};
</script>