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() {
console.log("go 的地址");
if (swiperList[0]?.goodsUrl) {
if (this.swiperListData[0]?.goodsUrl) {
uni.navigateTo({
url:
"/pages/other_package/productInfo/productInfo?id=" +
swiperList[0].goodsUrl,
this.swiperListData[0].goodsUrl,
});
}
},
onSwiperClick(index) {
console.log("banner 图", this.swiperListData, index);
swiperList[index].goodsUrl;
if (swiperList[index]?.goodsUrl) {
console.log("banner1111", this.swiperList, index);
this.swiperListData[index].goodsUrl;
if (this.swiperListData[index]?.goodsUrl) {
uni.navigateTo({
url:
"/pages/other_package/productInfo/productInfo?id=" +
swiperList[index].goodsUrl,
this.swiperListData[index].goodsUrl,
});
}
},