时味苏州
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.

33 lines
415 B

4 months ago
<template>
4 months ago
<view class="bg bg-padding">
4 months ago
<web-view :src="url"></web-view>
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() {
},
methods: {
}
}
</script>
<style>
.bg {
}
</style>