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.
47 lines
846 B
47 lines
846 B
<template> |
|
<u-navbar |
|
title="我的信息" |
|
placeholder |
|
leftIcon='' |
|
bgColor='#FA8C16da' |
|
titleStyle='color:#ffffff' |
|
></u-navbar> |
|
<view class="contmabox"> |
|
<view @click="login" class="login"> |
|
登录 |
|
</view> |
|
<!-- <image src=""></image> --> |
|
</view> |
|
<Tabber checkstate='user'></Tabber> |
|
</template> |
|
|
|
<script lang="ts" setup> |
|
import Tabber from '@/compoment/Tabber/Tabber.vue' |
|
function login(){ |
|
uni.navigateTo({ |
|
url:'/pages/login/login' |
|
}) |
|
} |
|
</script> |
|
|
|
<style lang="scss"> |
|
.login{ |
|
width: 260upx; |
|
height: 90upx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
background-color: #0073ff; |
|
color: #ffffff; |
|
border-radius: 90upx; |
|
margin: auto; |
|
margin-top: 180upx; |
|
} |
|
.contmabox{ |
|
display: flex; |
|
flex-direction: column; |
|
width: 100%; |
|
height: 400upx; |
|
background-color: #FA8C16da; |
|
} |
|
</style>
|
|
|