时味苏州
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
715 B

4 months ago
<template>
4 months ago
<view class="bg bg-padding">
4 months ago
<CustomTabBar :currentTab="0" />
</view>
</template>
<script>
import CustomTabBar from '@/components/CustomTabBar.vue';
export default {
components: {
CustomTabBar
},
data() {
return {
4 months ago
url: "https://www.hwh5.cn/hwcm/lRCqyP0p"
4 months ago
}
},
onLoad() {
4 months ago
},
onShow() {
let inMap = this.$store.state.user.inMap
if (inMap) {
uni.switchTab({
url:"/pages/index/index",
success: () => {
this.$store.commit("changeInMap",false);
}
})
} else {
uni.navigateTo({
url:"/subPackages/webPage/webPage?url=https://www.hwh5.cn/hwcm/lRCqyP0p"
})
}
4 months ago
},
methods: {
}
}
</script>
<style>
.bg {
}
</style>