| 12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view>
- <!-- 首页 -->
- <view class="u-page">
- <index></index>
- </view>
- <!-- 与包裹页面所有内容的元素u-page同级,且在它的下方 -->
- <tabbars :currentIndex="1"></tabbars>
- </view>
- </template>
- <script>
- import tabbars from "@/components/tabbar.vue"
- import index from "@/components/index.vue"
- export default {
- components: {
- tabbars,
- index
- },
- data() {
- return {}
- },
- onLoad() {
- if (!this.checkLogin()) {
- uni.reLaunch({
- url: '/pages/login/login'
- });
- }
- },
- onShow() {},
- }
- </script>
- <style lang="scss" scoped>
- </style>
|