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