优化样式

This commit is contained in:
dengjie
2023-01-31 00:14:42 +08:00
parent 7502bab1c0
commit 6445aa4783
10 changed files with 113 additions and 227 deletions

View File

@@ -39,8 +39,8 @@
data() {
return {
queryParam: {
pageSize: 10,
pageNum: 1
pageSize: 10,
pageNum: 1
},
queryTitle: null,
productList: []
@@ -59,6 +59,12 @@
this.$apiServe.getProductList(data).then(res => {
this.productList = res.data.data
}).finally(_ => {})
},
//点击图片跳转到详情页
toDetailPage(item) {
uni.navigateTo({
url: '/pages/detail/productsDetail/productsDetail?id=' + item.id
})
}
}
}