mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-09-23 05:46:40 +08:00
44 lines
981 B
Vue
44 lines
981 B
Vue
<template>
|
|
<view class="container">
|
|
<!-- 用户 -->
|
|
<!-- <MineUserBlue />-->
|
|
<MineUserWhite />
|
|
|
|
<!---功能菜单--->
|
|
<MineMenu />
|
|
|
|
<!---退出--->
|
|
<view class="logout-btn" @click="logout">
|
|
<view class="label">退出登录</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script setup>
|
|
import MineMenu from './components/mine-menu.vue';
|
|
import MineUserBlue from './components/mine-user-blue.vue';
|
|
import MineUserWhite from './components/mine-user-white.vue';
|
|
const logout = () => {};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.container {
|
|
width: 100%;
|
|
background: #f4f4f4;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.logout-btn {
|
|
margin: 24px 27px 50px;
|
|
height: 44px;
|
|
opacity: 0.5;
|
|
background: #ffffff;
|
|
border-radius: 22px;
|
|
box-shadow: 0px 3px 4px 0px rgba(24, 144, 255, 0.06);
|
|
font-size: 15px;
|
|
line-height: 44px;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
color: #353535;
|
|
}
|
|
</style>
|