no message

This commit is contained in:
2025-11-12 13:58:37 +08:00
parent 3e136a1db4
commit 92734fd710
+6 -6
View File
@@ -143,22 +143,22 @@ export default {
goShare() { goShare() {
console.log("go 的地址"); console.log("go 的地址");
if (swiperList[0]?.goodsUrl) { if (this.swiperListData[0]?.goodsUrl) {
uni.navigateTo({ uni.navigateTo({
url: url:
"/pages/other_package/productInfo/productInfo?id=" + "/pages/other_package/productInfo/productInfo?id=" +
swiperList[0].goodsUrl, this.swiperListData[0].goodsUrl,
}); });
} }
}, },
onSwiperClick(index) { onSwiperClick(index) {
console.log("banner 图", this.swiperListData, index); console.log("banner1111", this.swiperList, index);
swiperList[index].goodsUrl; this.swiperListData[index].goodsUrl;
if (swiperList[index]?.goodsUrl) { if (this.swiperListData[index]?.goodsUrl) {
uni.navigateTo({ uni.navigateTo({
url: url:
"/pages/other_package/productInfo/productInfo?id=" + "/pages/other_package/productInfo/productInfo?id=" +
swiperList[index].goodsUrl, this.swiperListData[index].goodsUrl,
}); });
} }
}, },