Jelajahi Sumber

cps:获取省钱

panyong 3 tahun lalu
induk
melakukan
46e98dc3ad

+ 1 - 0
htmldev/cps/src/App.vue

@@ -28,6 +28,7 @@ export default {
   },
   async created () {
     platform.isWeixin && WxConfig()
+    this.$store.dispatch('common/getUserInfo')
   }
 }
 </script>

+ 6 - 8
htmldev/cps/src/api/request.js

@@ -3,7 +3,6 @@ import axios from 'axios'
 import _ from 'lodash'
 import { Toast, Notify } from 'vant'
 import { getCookieValue } from '@/utils'
-import { platform } from '@/utils/platform'
 
 const host = window.location.host
 const domain = host.substring(0, host.indexOf('.')) || host.substring(0, host.indexOf(':'))
@@ -52,14 +51,13 @@ const toHideLoading = _.debounce(() => {
 request.interceptors.request.use(request => {
   const requestUrl = request.url
 
-  if (platform.isWeixin) {
-    // 因为微信开发者工具重复授权,本地开发时写死
-    if (/^(0|192|10|localhost)/.test(domain)) {
-      request.headers.wechatToken = '290e12a0ac3e9d467dbd1e0e98f1eb0c'
-    } else {
-      request.headers.wechatToken = getCookieValue('fanbutingwechatToken')
-    }
+  // 因为微信开发者工具重复授权,本地开发时写死
+  if (/^(0|192|10|localhost)/.test(domain)) {
+    request.headers.wechatToken = '4a55eef015f9e7c8fe8a2e6477209819'
+  } else {
+    request.headers.wechatToken = getCookieValue('fanbutingwechatToken')
   }
+
   request.url = requestUrl + (requestUrl.indexOf('?') > -1 ? '&' : '?') + 'nextUrl=' + encodeURIComponent(location.href)
 
   // 判断当前请求是否设置了不显示Loading

+ 0 - 8
htmldev/cps/src/views/marketing/index.vue

@@ -31,7 +31,6 @@
 
 <script>
 import BScroll from 'better-scroll'
-import { getHomeList } from './api'
 
 export default {
   data () {
@@ -73,7 +72,6 @@ export default {
   },
   activated () {
     if (!this.$route.meta.isUseCache) {
-      this.fetchData()
     }
   },
   methods: {
@@ -137,12 +135,6 @@ export default {
     // 导航类目超过一屏在使用
     _adjust (tabId) {
       this.scroll.scrollTo(this.initTranslate(tabId), 0, 300)
-    },
-    async fetchData () {
-      try {
-        const data = await getHomeList()
-        console.log(data)
-      } catch (err) {}
     }
   }
 }

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

@@ -0,0 +1,10 @@
+import request from '@/api/request'
+
+/**
+ * 获取省钱列表
+ */
+export const getHomeList = () => request({
+  method: 'GET',
+  url: '/api/home/list',
+  showLoading: false
+})

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

@@ -7,16 +7,16 @@
         <li
           v-for="(item, index) in shops"
           :key="index">
-          <p class="category">{{ item.category }}</p>
+          <p class="category">{{ item.category_type_name }}</p>
           <div class="wrap">
             <!--第一个默认占位-->
             <p></p>
             <p
-              v-for="(shop, idx) in item.child"
+              v-for="(shop, idx) in item.category_data"
               :key="idx"
               @click="handleJump(shop)">
-              <i :style="{backgroundImage: 'url(' + shop.icon + ')'}"></i>
-              <span>{{ shop.name }}</span>
+              <i :style="{backgroundImage: 'url(' + shop.category_img_url + ')'}"></i>
+              <span>{{ shop.category_name }}</span>
             </p>
           </div>
         </li>
@@ -37,6 +37,7 @@
 <script>
 import BScroll from 'better-scroll'
 import Mall from './mall'
+import { getHomeList } from './api'
 
 export default {
   name: 'index',
@@ -46,24 +47,12 @@ export default {
   data () {
     return {
       shopsScroll: null,
-      shops: [
-        {
-          category: '外卖',
-          child: [
-            {
-              icon: require('./image/ic_eleme@2x.png'),
-              name: '饿了么'
-            }
-          ]
-        }
-      ]
+      shops: []
     }
   },
   activated () {
     if (!this.$route.meta.isUseCache) {
-      setTimeout(() => {
-        this._initScroll()
-      }, 500)
+      this.fetchData()
     } else {
       if (this.shopsScroll) {
         this.shopsScroll.refresh()
@@ -82,6 +71,17 @@ export default {
     },
     handleShowMall () {
       this.$refs.myMall.show()
+    },
+    async fetchData () {
+      try {
+        const { status, data } = await getHomeList()
+        if (status) {
+          this.shops = data
+        }
+        setTimeout(() => {
+          this._initScroll()
+        }, 500)
+      } catch (err) {}
     }
   },
   beforeDestroy () {