2024-06-26 09:12:03 +08:00
|
|
|
<template>
|
2024-06-28 11:30:43 +08:00
|
|
|
<view :style="{ backgroundPositionY: -44 + safeAreaInsets.top + 'px' }">
|
|
|
|
<!-- 导航栏 -->
|
|
|
|
<view :style="{ paddingTop: safeAreaInsets.top + 'px' }" class="van-nav-bar">
|
|
|
|
<view class="van-nav-bar__content">
|
|
|
|
<view class="page-icon" @click="gotoBack">
|
|
|
|
<uni-icons color="#fff" type="back" size="26"></uni-icons>
|
|
|
|
<view>返回</view>
|
|
|
|
</view>
|
|
|
|
<view class="page-navbar">设置</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<!-- 功能页 -->
|
|
|
|
<view style="background-color: #f5f9fa; height: 94vh">
|
|
|
|
<view style="height: 20rpx" />
|
|
|
|
<view v-for="item in serve" :key="item.id" class="userlist">
|
|
|
|
<view :class="{ active: item.id === 5 }">
|
|
|
|
<view class="userlist-box">
|
|
|
|
<view style="margin: 0 0.8rem">
|
|
|
|
<image :src="item.icon" :style="{ width: item.id == 0 ? '1.25rem' : '1.45rem', height: '1.45rem', transform: 'translateY(0.2rem)' }"></image>
|
|
|
|
</view>
|
|
|
|
<view class="userlist-box-text" :style="{ 'border-bottom': item.id == 5 || item.id == 4 ? 'node' : '1rpx solid #eee' }">
|
|
|
|
<view :style="{ transform: item.id == 0 ? 'translateX(0.2rem)' : '' }">{{ item.text }}</view>
|
|
|
|
<view style="margin-right: 0.7rem"><uni-icons color="#c1c1c3" type="forward" size="18"></uni-icons></view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="buttom">退出登录</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
2024-06-26 09:12:03 +08:00
|
|
|
</template>
|
|
|
|
|
2024-06-26 14:46:13 +08:00
|
|
|
<script setup>
|
2024-06-28 11:30:43 +08:00
|
|
|
import { ref } from 'vue';
|
|
|
|
const { safeAreaInsets } = uni.getSystemInfoSync();
|
|
|
|
const serve = ref([
|
|
|
|
{
|
|
|
|
text: '登录密码修改',
|
|
|
|
icon: '../../../../static/wodeshezhi/1.png',
|
|
|
|
id: 0
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '手势密码修改',
|
|
|
|
icon: '../../../../static/wodeshezhi/2.png',
|
|
|
|
id: 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '删除帐号',
|
|
|
|
icon: '../../../../static/wodeshezhi/3.png',
|
|
|
|
id: 2
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '帐号迁移',
|
|
|
|
icon: '../../../../static/wodeshezhi/4.png',
|
2024-06-27 15:17:31 +08:00
|
|
|
|
2024-06-28 11:30:43 +08:00
|
|
|
id: 3
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '大字版',
|
|
|
|
icon: '../../../../static/wodeshezhi/5.png',
|
2024-06-27 15:17:31 +08:00
|
|
|
|
2024-06-28 11:30:43 +08:00
|
|
|
id: 4
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '分享12123给好友',
|
|
|
|
icon: '../../../../static/wodeshezhi/6.png',
|
|
|
|
id: 5
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '清理缓存',
|
|
|
|
icon: '../../../../static/wodeshezhi/7.png',
|
|
|
|
id: 6
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '关于',
|
|
|
|
icon: '../../../../static/wodeshezhi/8.png',
|
|
|
|
id: 7
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
const gotoBack = () => {
|
|
|
|
uni.navigateBack({
|
|
|
|
delta: 1
|
|
|
|
});
|
|
|
|
};
|
2024-06-26 09:12:03 +08:00
|
|
|
</script>
|
|
|
|
|
2024-06-26 14:46:13 +08:00
|
|
|
<style lang="scss" scoped>
|
2024-06-28 11:30:43 +08:00
|
|
|
.van-nav-bar__content {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 3rem;
|
|
|
|
background-color: #2c66a9;
|
|
|
|
color: #fff;
|
|
|
|
letter-spacing: 1.5px;
|
|
|
|
position: relative;
|
2024-06-26 18:03:59 +08:00
|
|
|
|
2024-06-28 11:30:43 +08:00
|
|
|
.page-icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
}
|
2024-06-27 17:45:51 +08:00
|
|
|
|
2024-06-28 11:30:43 +08:00
|
|
|
.page-navbar {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
}
|
|
|
|
}
|
2024-06-27 17:45:51 +08:00
|
|
|
|
2024-06-28 11:30:43 +08:00
|
|
|
.userlist {
|
|
|
|
letter-spacing: 1.5px;
|
|
|
|
.userlist-box {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
background-color: #fff;
|
2024-06-27 17:45:51 +08:00
|
|
|
|
2024-06-28 11:30:43 +08:00
|
|
|
.userlist-box-text {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 96%;
|
|
|
|
padding: 1rem 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-06-27 17:45:51 +08:00
|
|
|
|
2024-06-28 11:30:43 +08:00
|
|
|
.buttom {
|
|
|
|
width: 90%;
|
|
|
|
margin: 2rem auto 0rem;
|
|
|
|
padding: 0.7rem 0rem;
|
|
|
|
background-color: #ff6769;
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2024-06-27 17:45:51 +08:00
|
|
|
|
2024-06-28 11:30:43 +08:00
|
|
|
.active {
|
|
|
|
padding: 0.2rem 0rem;
|
|
|
|
margin: 0.8rem 0rem;
|
|
|
|
background-color: #f5f9fa;
|
|
|
|
}
|
|
|
|
</style>
|