|
@@ -1,22 +1,41 @@
|
|
|
<template>
|
|
|
<view class="container">
|
|
|
- <view :style="{height: statusBarHeight + 'px'}"></view>
|
|
|
+ <!-- <view :style="{height: statusBarHeight + 'px'}"></view> -->
|
|
|
<!-- <view :style="{height: navBarHeight + 'px'}"></view> -->
|
|
|
+ <u-navbar :is-back="false" title="" :background="{ background: '#f7f7f7' }" :border-bottom="false">
|
|
|
+ <view class="slot-wrap">
|
|
|
+ <image src="/static/images/login-icon.png" mode="aspectFit" style="width: 200rpx;"></image>
|
|
|
+ </view>
|
|
|
+ </u-navbar>
|
|
|
<view class="page-content">
|
|
|
- 主页
|
|
|
+ <button @click="toPage">是否登录</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
- import { ref } from 'vue'
|
|
|
- import { onReady, onLoad } from '@dcloudio/uni-app'
|
|
|
-
|
|
|
+ import {
|
|
|
+ ref
|
|
|
+ } from 'vue'
|
|
|
+ import {
|
|
|
+ onReady,
|
|
|
+ onLoad
|
|
|
+ } from '@dcloudio/uni-app'
|
|
|
+ import { useAuthStore } from '@/store/authStore'
|
|
|
+ const authStore = useAuthStore()
|
|
|
// 屏幕状态栏高度
|
|
|
const statusBarHeight = ref(0)
|
|
|
// 顶部导航栏高度
|
|
|
const navBarHeight = ref(0)
|
|
|
-
|
|
|
+ const toPage = () => {
|
|
|
+ if(!authStore.isAuthenticated){
|
|
|
+ uni.navigateTo({
|
|
|
+ url: "/pages/login/login"
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
+ console.log("登陆了")
|
|
|
+ }
|
|
|
onReady(() => {
|
|
|
uni.getSystemInfo({
|
|
|
success(e) {
|
|
@@ -41,4 +60,7 @@
|
|
|
background-color: $uni-bg-color;
|
|
|
padding: 0 20rpx;
|
|
|
}
|
|
|
-</style>
|
|
|
+ .slot-wrap{
|
|
|
+ padding-left: 20rpx;
|
|
|
+ }
|
|
|
+</style>
|