|
@@ -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
|