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.
79 lines
2.1 KiB
79 lines
2.1 KiB
4 weeks ago
|
<template>
|
||
|
<view class="setting-container" :style="{height: `${windowHeight}px`}">
|
||
|
<view class="menu-list">
|
||
|
<view class="list-cell list-cell-arrow" @click="handleToPwd">
|
||
|
<view class="menu-item-box">
|
||
|
<view class="iconfont icon-password menu-icon"></view>
|
||
|
<view>修改密码</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="list-cell list-cell-arrow" @click="handleToUpgrade">
|
||
|
<view class="menu-item-box">
|
||
|
<view class="iconfont icon-refresh menu-icon"></view>
|
||
|
<view>检查更新</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="list-cell list-cell-arrow" @click="handleCleanTmp">
|
||
|
<view class="menu-item-box">
|
||
|
<view class="iconfont icon-clean menu-icon"></view>
|
||
|
<view>清理缓存</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="cu-list menu">
|
||
|
<view class="cu-item item-box">
|
||
|
<view class="content text-center" @click="handleLogout">
|
||
|
<text class="text-black">退出登录</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { useUserStore } from '@/store'
|
||
|
import { ref, computed , getCurrentInstance } from "vue"
|
||
|
|
||
|
const { proxy } = getCurrentInstance()
|
||
|
const windowHeight = computed(() => uni.getSystemInfoSync().windowHeight - 50)
|
||
|
|
||
|
function handleToPwd() {
|
||
|
proxy.$tab.navigateTo('/pages/mine/pwd/index')
|
||
|
}
|
||
|
|
||
|
function handleToUpgrade() {
|
||
|
proxy.$modal.showToast('模块建设中~')
|
||
|
}
|
||
|
|
||
|
function handleCleanTmp() {
|
||
|
proxy.$modal.showToast('模块建设中~')
|
||
|
}
|
||
|
|
||
|
function handleLogout() {
|
||
|
proxy.$modal.confirm('确定注销并退出系统吗?').then(() => {
|
||
|
useUserStore().logOut().then(() => {}).finally(()=>{
|
||
|
proxy.$tab.reLaunch('/pages/index')
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.page {
|
||
|
background-color: #f8f8f8;
|
||
|
}
|
||
|
|
||
|
.item-box {
|
||
|
background-color: #FFFFFF;
|
||
|
margin: 30rpx;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
padding: 10rpx;
|
||
|
border-radius: 8rpx;
|
||
|
color: #303133;
|
||
|
font-size: 32rpx;
|
||
|
}
|
||
|
</style>
|