refactor: 🐛 优化部分代码逻辑

master
学习很差啦 2022-09-30 09:58:08 +08:00
parent aa8fc523df
commit eb0faad7ec
2 changed files with 21 additions and 13 deletions

View File

@ -3,7 +3,7 @@
<div v-for="(item, index) in res" :key="index" class="goods-row"> <div v-for="(item, index) in res" :key="index" class="goods-row">
<div class="flex goods-col"> <div class="flex goods-col">
<div class="goods-img" @click="navigateToDetailPage(item)"> <div class="goods-img" @click="navigateToDetailPage(item)">
<u-image width="230rpx" border-radius='16' height="230rpx" :src="item.goodsImage"> <u-image width="230rpx" border-radius='16' height="230rpx" :src="item.goodsImage || item.thumbnail">
<u-loading slot="loading"></u-loading> <u-loading slot="loading"></u-loading>
</u-image> </u-image>
</div> </div>
@ -55,6 +55,14 @@
return [] return []
} }
}, },
},
methods:{
//
navigateToDetailPage(item) {
uni.navigateTo({
url: `/pages/product/goods?id=${item.id}&goodsId=${item.goodsId}`,
});
},
} }
} }
</script> </script>

View File

@ -104,7 +104,7 @@
}); });
} }
else{ else{
uni.redirectTo({ uni.navigateTo({
url: "/pages/order/myOrder?status=0", url: "/pages/order/myOrder?status=0",
}); });
} }