food_wechat/pages/index/index.vue
szdot 398110e764 【类 型】:fix
【主	题】:修改 每次打开主页时 进行用户身份判断 及进行 无感登录 登录完整后 进行mqtt主题的 订阅
【描	述】:
	[原因]:
	[过程]:
	[影响]:
【结	束】

# 类型 包含:
# feat:新功能(feature)
# fix:修补bug
# docs:文档(documentation)
# style: 格式(不影响代码运行的变动)
# refactor:重构(即不是新增功能,也不是修改bug的代码变动)
# test:增加测试
# chore:构建过程或辅助工具的变动
2024-05-31 17:26:20 +08:00

89 lines
2.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="vh100 flex column">
<!-- banner -->
<u-swiper :list="bannerList" keyName="url" :autoplay="true" height="616rpx"></u-swiper>
<!-- 登录框 -->
<view class="flex rad32 boxshadow loginBox mac">
<view class="m-l-24 w-80rpx h-80rpx">
<u-avatar size="80rpx" :src="avatarSrc"></u-avatar>
</view>
<view class="flex1 m-l-24 flex mac h100">
<navigator open-type="redirect" url="/pages/main/login">
<view class="fb fz32">{{userInfo.tel}}</view>
</navigator>
<u-icon name="arrow-right"></u-icon>
</view>
<view class="flex column mc mac m-r-24 w-80rpx h-80rpx">
<u-icon size="48rpx" name="order"></u-icon>
<view class="fz24">订单</view>
</view>
</view>
<!-- 主按钮 -->
<view class="flex mse" style="height: 222rpx;margin-top: 30rpx;">
<navigator url="/pages/shop/list">
<mainBut bg="#D43030" imgSrc="/static/icons/ordernow.svg" butBt="开始点餐" butSt="Order Now" />
</navigator>
<navigator url="/pages/index/demo">
<mainBut bg="#FF8D1A" imgSrc="/static/icons/buggoods.svg" butBt="购买商品" butSt="Buy Goods" />
</navigator>
<!-- <mainBut bg="#FFC300" imgSrc="/static/icons/franchise.svg" butBt="项目介绍" butSt="Introduction" /> -->
</view>
<!-- 站长推荐 -->
<!-- tabbar -->
<view>
<tabbar></tabbar>
</view>
</view>
</template>
<script>
import {
checkUserInfo,
wxLogin
} from '@/utils/index.js'
export default {
data() {
return {
avatarSrc: "", //头像地址
bannerList: [{ //banner
url: '/static/banner1.png'
}],
}
},
computed: {
userInfo() {
return this.$store.state.userInfo
}
},
onReady() {
},
onShow() {
//检查token 没有则进行无感登录
this.checkUserInfo()
// 当页面显示时设置tabber的激活项
this.$store.commit('setTabbarCurrent', 0)
},
methods: {
// 检查用户信息
checkUserInfo() {
return checkUserInfo(this.$store)
}
}
}
</script>
<style lang="scss">
.loginBox {
width: 702rpx;
height: 128rpx;
background-color: #faf7f3;
position: absolute;
left: 50%;
transform: translateX(-50%);
top: 494rpx;
}
</style>