浏览代码

分享落地页:调试

panyong 3 年之前
父节点
当前提交
a117a21109
共有 3 个文件被更改,包括 60 次插入16 次删除
  1. 1 1
      htmldev/cps/devshell.sh
  2. 43 4
      htmldev/cps/src/views/marketing/save/index.vue
  3. 16 11
      htmldev/cps/src/views/shareMiddle/index.vue

+ 1 - 1
htmldev/cps/devshell.sh

@@ -3,7 +3,7 @@
 # git pull
 # cd /data/project/web/tingbang/htmldev/dashboard
 # npm run build
- ssh root@81.68.157.237
+ ssh root@1.15.137.157
 #function git.branch {
 #  br=`git branch | grep '*'`
 #  echo ${br/* /}

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

@@ -42,9 +42,9 @@
 </template>
 
 <script>
-import { Loading } from 'vant'
+import { Loading, Toast } from 'vant'
 import BScroll from 'better-scroll'
-import { getHomeList } from './api'
+import { getHomeList, getJumpConfig } from './api'
 
 export default {
   name: 'index',
@@ -55,12 +55,14 @@ export default {
     return {
       isRefresh: false, // 是否下拉刷新
       shopsScroll: null,
-      shops: []
+      shops: [],
+      booLock: false
     }
   },
   activated () {
     if (!this.$route.meta.isUseCache) {
       this.isRefresh = false
+      this.booLock = false
       this.fetchData()
     } else {
       if (this.shopsScroll) {
@@ -89,7 +91,44 @@ export default {
       }
     },
     async handleJump (shop) {
-      top.location.href = shop.link_url
+      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
+      }
+      if (this.booLock) {
+        return
+      }
+      this.booLock = true
+      try {
+        const { status, data, msg } = await getJumpConfig(linkUrl[1])
+        this.booLock = false
+        if (status) {
+          const { url } = data
+          top.location.href = url
+        } else {
+          Toast(msg)
+        }
+      } catch (e) {
+        this.booLock = false
+      }
+    },
+    // 判断微信是否支持:微信版本要求为:7.0.12及以上。 系统版本要求为:iOS 10.3及以上、Android 5.0及以上
+    isSupportJumpWXmini () {
+      const wechat = navigator.userAgent.match(/MicroMessenger\/([\d\.]+)/i)
+      let result = false
+      if (wechat) {
+        const judgewechat = wechat[1].split('.')
+
+        if (judgewechat[0] >= 7) {
+          if (judgewechat[1] >= 0) {
+            if (judgewechat[2] >= 12) {
+              result = true
+            }
+          }
+        }
+      }
+      return result
     },
     onRefresh () {
       this.isRefresh = true

+ 16 - 11
htmldev/cps/src/views/shareMiddle/index.vue

@@ -10,14 +10,21 @@
       <wx-open-launch-weapp
         :username="accountId"
         :path="appPath"
-        style="display:block;width: 100%;height: 100%;"
-        @error="errorHandle">
-        <template>
-          <button
-            class="btn"
-            style="display:block;width: 100%;height: 100%;">小程序跳转
-          </button>
-        </template>
+        style="display: block;width: 100%;height: 100%;">
+        <script type="text/wxtag-template">
+          <style>
+            .jump-btn {
+              height: 44px;
+              line-height: 44px;
+              border: none;
+              font-size: 16px;
+              color: #ffffff;
+              background-color: #f94048;
+              text-align: center;
+            }
+          </style>
+          <div class="jump-btn">打开小程序</div>
+        </script>
       </wx-open-launch-weapp>
     </van-popup>
   </div>
@@ -77,9 +84,7 @@ export default {
         } else {
           Toast(msg)
         }
-      } catch (e) {
-        Toast(JSON.stringify(e))
-      }
+      } catch (e) {}
     },
     errorHandle (err) {
       Dialog.alert({