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.0 KiB
79 lines
2.0 KiB
<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>
|
|
export default {
|
|
data() {
|
|
return {
|
|
windowHeight: uni.getSystemInfoSync().windowHeight
|
|
}
|
|
},
|
|
methods: {
|
|
handleToPwd() {
|
|
this.$tab.navigateTo('/pages/mine/pwd/index')
|
|
},
|
|
handleToUpgrade() {
|
|
this.$modal.showToast('模块建设中~')
|
|
},
|
|
handleCleanTmp() {
|
|
this.$modal.showToast('模块建设中~')
|
|
},
|
|
handleLogout() {
|
|
this.$modal.confirm('确定注销并退出系统吗?').then(() => {
|
|
this.$store.dispatch('LogOut').then(() => {
|
|
this.$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>
|