Kaynağa Gözat

```
feat(subPack-xsb): 支持扫码进入商品详情页

当页面栈长度为1时,从二维码参数中解析商品ID,
支持通过扫描二维码直接进入指定商品详情页面
```

zhangtao 1 hafta önce
ebeveyn
işleme
b6ea6436a8
1 değiştirilmiş dosya ile 6 ekleme ve 0 silme
  1. 6 0
      src/subPack-xsb/goods/index.vue

+ 6 - 0
src/subPack-xsb/goods/index.vue

@@ -37,6 +37,12 @@ const isShowTab = ref(false)
 const goodsId = ref()
 onLoad((option: any) => {
   goodsId.value = option.id
+  if (getCurrentPages().length === 1) {
+    const urls = decodeURIComponent(option.q)
+    const id = urls.split('?id=')[1]
+    goodsId.value = id
+  }
+
   getGoodsDetaile()
 })