1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <view>
- <!-- 首页 -->
- <!-- <HomePage v-if="showpage==0"></HomePage> -->
- <!-- 衣柜 -->
- <!-- <MardPage ref="yigui" v-if="showpage==1" @fatherMethod="initBtn"></MardPage> -->
- <!-- 搭配 -->
- <!-- <DapeiPage ref="chuanda" v-if="showpage==2" @fatherMethod="initshow"></DapeiPage> -->
- <!-- 商城 -->
- <!-- <ShopPage v-if="showpage==3"></ShopPage> -->
- <!-- 我的 -->
- <!-- <UserPage v-if="showpage==4"></UserPage> -->
- <!-- 底部 -->
- <!-- <view>
- <tm-bottomnavigation :auto-selected="false" :activeIndex="showpage" @change="changepage" style="height:50px" :list="list_1"></tm-bottomnavigation>
- </view> -->
- </view>
- </template>
- <script>
- import HomePage from "@/pages/shouye/index"
- import MardPage from "@/pages/wardrobe/index"
- import DapeiPage from "@/pages/dapei/index"
- import ShopPage from "@/pages/shop/index"
- import UserPage from "@/pages/user/index"
- export default {
- components:{
- HomePage,
- MardPage,
- DapeiPage,
- ShopPage,
- UserPage
- },
- data() {
- return {
- // list_1: [
- // {iconSize: 60,showDot:false,icon: '/static/img/31.png',noIcon:'/static/img/31.png', value: '首页' },
- // {iconSize: 60,showDot:false,icon: '/static/img/32.png',noIcon:'/static/img/32.png', value: '衣橱' },
- // {iconSize: 60,showDot:false, icon: '/static/img/103.png',noIcon:'/static/img/103.png', value: '穿搭' },
- // {iconSize: 60,showDot:false, icon: '/static/img/34.png',noIcon:'/static/img/34.png', value: '商城' },
- // {iconSize: 60,showDot:false, icon: '/static/img/35.png',noIcon:'/static/img/35.png', value: '我的' }
- // ],
- // showpage:0
- };
- },
- onLoad(index) {
- // this.$tm.theme.setBlack(true);
- // if(index.index==1){
- // this.showpage=1;
- // this.initBtn()
- // }else if(index.index==2){
- // console.log(222)
- // this.showpage=2;
- // this.initshow()
- // }else{
- // this.showpage=0;
- // }
- },
- created() {
- uni.onPushMessage((res) => {
- console.log("收到推送消息:",res) //监听推送消息
- })
- },
- methods: {
- initBtn(){
- this.$refs.yigui.qingkong();
- this.$refs.yigui.getQiu();
- },
- initshow(){
- this.$refs.chuanda.shuaxin()
- },
- changepage(info){
- this.showpage=info.index
- }
- }
- };
- </script>
|