Explorar el Código

首页:代码优化

panyong hace 3 años
padre
commit
6e48e44aba

+ 1 - 1
htmldev/cps/src/api/request.js

@@ -55,7 +55,7 @@ request.interceptors.request.use(request => {
 
   // 因为微信开发者工具重复授权,本地开发时写死
   if (/^(0|192|10|localhost)/.test(domain)) {
-    request.headers.wechatToken = '807ace6b51536f761861439bdbffc4ff'
+    request.headers.wechatToken = 'af072e53ded8ea6144ea2fc468dd6aeb'
   } else {
     request.headers.wechatToken = getCookieValue('fanbutingwechatToken')
   }

+ 1 - 0
htmldev/cps/src/main.js

@@ -23,6 +23,7 @@ Vue.directive('myBlur', {
 })
 
 Vue.use(VueCookie)
+Vue.config.ignoredElements = ['wx-open-launch-weapp']
 
 new Vue({
   router,

+ 5 - 63
htmldev/cps/src/views/marketing/save/index.vue

@@ -36,49 +36,26 @@
             </p>
           </div>
         </li>
-        <li v-show="false">
-          <img
-            class="jump-more"
-            src="./image/ic_more@2x.png"
-            alt=""
-            v-show="shops.length"
-            @click="handleShowMall">
-        </li>
       </ul>
     </div>
-    <van-popup
-      v-model="showFlag"
-      :lock-scroll="false"
-      position="bottom"
-      :close-on-click-overlay="false"
-      @click-overlay="showFlag = false"
-      style="height: 85%;">
-      <Mall
-        :goods="shops"
-        ref="myMall"/>
-    </van-popup>
   </div>
 </template>
 
 <script>
-import { Loading, Popup, Toast } from 'vant'
+import { Loading } from 'vant'
 import BScroll from 'better-scroll'
-import Mall from './mall'
-import { getHomeList, getJumpConfig } from './api'
+import { getHomeList } from './api'
 
 export default {
   name: 'index',
   components: {
-    'van-loading': Loading,
-    'van-popup': Popup,
-    Mall
+    'van-loading': Loading
   },
   data () {
     return {
       isRefresh: false, // 是否下拉刷新
       shopsScroll: null,
-      shops: [],
-      showFlag: false
+      shops: []
     }
   },
   activated () {
@@ -112,35 +89,7 @@ export default {
       }
     },
     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
-      this.$nextTick(() => {
-        this.$refs.myMall.show()
-      })
+      top.location.href = shop.link_url
     },
     onRefresh () {
       this.isRefresh = true
@@ -279,11 +228,4 @@ export default {
     }
   }
 }
-
-.jump-more {
-  display: block;
-  width: 331px;
-  height: 56px;
-  margin: 0 auto;
-}
 </style>