样式修改

This commit is contained in:
yangchunyu 2024-06-27 17:45:51 +08:00
parent 89b5956f75
commit fef0d65500
2 changed files with 143 additions and 129 deletions

View File

@ -165,7 +165,7 @@ onMounted(() => {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
height: 4rem; height: 3rem;
background-color: #2c66a9; background-color: #2c66a9;
color: #fff; color: #fff;
letter-spacing: 1.5px; letter-spacing: 1.5px;

View File

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