瀏覽代碼

分类:跳转

panyong 3 年之前
父節點
當前提交
76851a6e1c

+ 2 - 1
htmldev/cps/src/utils/wxConfig.js

@@ -27,7 +27,8 @@ export const WxConfig = async () => {
       'onMenuShareAppMessage',
       'onMenuShareTimeline',
       'hideMenuItems',
-      'scanQRCode']
+      'scanQRCode'],
+    openTagList: ['wx-open-launch-weapp']
   }
   wx.config(wxParam)
   return wx

+ 9 - 0
htmldev/cps/src/views/marketing/save/api/index.js

@@ -8,3 +8,12 @@ export const getHomeList = () => request({
   url: '/api/home/list',
   showLoading: true
 })
+
+/**
+ * 获取返利链接接口
+ * @param val
+ */
+export const getJumpConfig = (val) => request({
+  method: 'GET',
+  url: `/api/transfer/${val}`
+})

+ 26 - 4
htmldev/cps/src/views/marketing/save/index.vue

@@ -61,10 +61,10 @@
 </template>
 
 <script>
-import { Loading, Popup } from 'vant'
+import { Loading, Popup, Toast } from 'vant'
 import BScroll from 'better-scroll'
 import Mall from './mall'
-import { getHomeList } from './api'
+import { getHomeList, getJumpConfig } from './api'
 
 export default {
   name: 'index',
@@ -111,8 +111,30 @@ export default {
         this.shopsScroll.refresh()
       }
     },
-    handleJump (shop) {
-      top.location.href = shop.link_url
+    async handleJump (shop) {
+      const linkUrl = shop.link_url && shop.link_url.split('api/transfer/')
+      if (!Array.isArray(linkUrl) && linkUrl.length > 1) {
+        top.location.href = shop.link_url
+        return
+      }
+      try {
+        const { status, data, msg } = await getJumpConfig(linkUrl[1])
+        if (status) {
+          // type 类型:1-h5 2-小程序
+          const { type, url } = data
+          switch (type) {
+            case 2:
+              // data.app_id
+              break
+            default:
+              top.location.href = url
+          }
+        } else {
+          Toast(msg)
+        }
+      } catch (e) {
+        Toast(JSON.stringify(e))
+      }
     },
     handleShowMall () {
       this.showFlag = true