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.
165 lines
2.9 KiB
165 lines
2.9 KiB
<template>
|
|
<view class="main">
|
|
<view :style="{height:iSMT+'px'}"></view>
|
|
<view class="top">
|
|
<view class="top-list">
|
|
<text>语言</text>
|
|
<text class="language">中文(简体)</text>
|
|
<uni-icons type="arrowright" size="16" class="arrow" />
|
|
</view>
|
|
<view class="top-list" @click="goToFont">
|
|
<text>字体大小</text>
|
|
<uni-icons type="arrowright" size="16" class="arrow" />
|
|
</view>
|
|
<view class="top-list" @click="goToTheme">
|
|
<text>主题切换</text>
|
|
<uni-icons type="arrowright" size="16" class="arrow" />
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="center">
|
|
<view class="center-list" @click="goToMessage">
|
|
<text>消息推送</text>
|
|
<uni-icons type="arrowright" size="16" class="arrow" />
|
|
</view>
|
|
</view>
|
|
|
|
<view class="bottom">
|
|
<view class="bottom-list" @click="goToServer">
|
|
<text>切换服务器</text>
|
|
<uni-icons type="arrowright" size="16" class="arrow" />
|
|
</view>
|
|
<view class="bottom-list" @click="clearCache">
|
|
<text>清理缓存</text>
|
|
<text class="cache">{{ cache }}M</text>
|
|
<uni-icons type="arrowright" size="16" class="arrow" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
ref,
|
|
onMounted
|
|
} from 'vue'
|
|
const iSMT = ref(0)
|
|
const cache = ref('45.5')
|
|
|
|
const goToFont = () => {
|
|
uni.navigateTo({
|
|
url: '/pages/setting/font'
|
|
})
|
|
}
|
|
|
|
const goToTheme = () => {
|
|
uni.navigateTo({
|
|
url: '/pages/setting/theme'
|
|
})
|
|
}
|
|
|
|
const goToMessage = () => {
|
|
uni.navigateTo({
|
|
url: '/pages/setting/message'
|
|
})
|
|
}
|
|
|
|
const goToServer = () => {
|
|
uni.navigateTo({
|
|
url: '/pages/setting/server'
|
|
})
|
|
}
|
|
|
|
const clearCache = () => {
|
|
cache.value = 0
|
|
uni.showToast({
|
|
title: '清理成功',
|
|
icon: 'success',
|
|
duration: 1500
|
|
})
|
|
}
|
|
|
|
onMounted(() => {
|
|
// 状态栏高度
|
|
iSMT.value = uni.getSystemInfoSync().statusBarHeight;
|
|
console.log('看看高度', iSMT.value)
|
|
})
|
|
</script>
|
|
|
|
<style>
|
|
.top {
|
|
margin-top: 1.5vh;
|
|
height: 21vh;
|
|
background-color: white;
|
|
}
|
|
|
|
.top-list {
|
|
width: 630rpx;
|
|
height: 7vh;
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0 40rpx;
|
|
padding: 0 10rpx;
|
|
border-bottom: 1rpx solid #eee;
|
|
}
|
|
|
|
.top-list:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.language {
|
|
margin-left: 55%;
|
|
font-size: 14px;
|
|
color: rgb(203, 203, 203);
|
|
}
|
|
|
|
.arrow {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.center {
|
|
background-color: white;
|
|
height: 7vh;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 1vh;
|
|
}
|
|
|
|
.center-list {
|
|
width: 630rpx;
|
|
margin: 0rpx 40rpx;
|
|
display: flex;
|
|
padding: 0 10rpx;
|
|
}
|
|
|
|
.center-list>.arrow {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.bottom {
|
|
height: 13.5vh;
|
|
background-color: white;
|
|
margin-top: 1vh;
|
|
}
|
|
|
|
.bottom-list {
|
|
width: 630rpx;
|
|
height: 7vh;
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0 40rpx;
|
|
padding: 0 10rpx;
|
|
border-bottom: 1rpx solid #eee;
|
|
}
|
|
|
|
.cache {
|
|
margin-left: 55%;
|
|
font-size: 14px;
|
|
color: rgb(203, 203, 203);
|
|
}
|
|
|
|
.bottom-list:last-child {
|
|
border-bottom: none;
|
|
}
|
|
</style>
|