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