邓洁 : 注释log

This commit is contained in:
邓洁
2023-12-05 10:48:27 +08:00
parent 20f56b5d8d
commit 0612840cdc
27 changed files with 235 additions and 229 deletions

View File

@@ -162,7 +162,7 @@
methods: {
handleEdit(shopid) {
// TODO 完成页面跳转
console.log("点击了编辑ID为", shopid);
// console.log("点击了编辑ID为", shopid);
this.$emit('updateItem', shopid)
},
handleDel(shopid) {
@@ -170,12 +170,12 @@
this.$emit('delItem', shopid)
},
enterDetail() {
console.log("进入详情页面", this.shopInfo.id, this.shopInfo.type);
// console.log("进入详情页面", this.shopInfo.id, this.shopInfo.type);
const query = this.$u.queryParams({
id: this.shopInfo.id,
type: this.shopInfo.type
})
console.log("query", query);
// console.log("query", query);
uni.navigateTo({
url: '/pages/detail/detail' + `${query}`
})