样式修改
This commit is contained in:
parent
89b5956f75
commit
fef0d65500
|
@ -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;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<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">
|
||||||
|
@ -11,13 +11,18 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- 功能页 -->
|
<!-- 功能页 -->
|
||||||
|
<view style="background-color: #f5f9fa; height: calc(100rem - 3rem);">
|
||||||
|
<view style="height: 20rpx;" />
|
||||||
<view v-for="item in serve" :key="item.id" class="userlist">
|
<view v-for="item in serve" :key="item.id" class="userlist">
|
||||||
<view :class="{ active: item.id === 5 }">
|
<view :class="{ active: item.id === 5 }">
|
||||||
<view class="userlist-box">
|
<view class="userlist-box">
|
||||||
<view style="margin: 0 0.8rem">
|
<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>
|
<image :src="item.icon"
|
||||||
|
:style="{ width: item.id == 0 ? '1.25rem' : '1.45rem', height: '1.45rem', transform: 'translateY(0.2rem)' }">
|
||||||
|
</image>
|
||||||
</view>
|
</view>
|
||||||
<view class="userlist-box-text" :style="{ 'border-bottom': item.id == 5 || item.id == 4 ? 'node' : '1rpx solid #eee' }">
|
<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="{ 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 style="margin-right: 0.7rem"><uni-icons color="#c1c1c3" type="forward" size="18"></uni-icons></view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -26,13 +31,17 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="buttom">退出登录</view>
|
<view class="buttom">退出登录</view>
|
||||||
</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 {
|
||||||
|
safeAreaInsets
|
||||||
|
} = uni.getSystemInfoSync();
|
||||||
|
const serve = ref([{
|
||||||
text: '登录密码修改',
|
text: '登录密码修改',
|
||||||
icon: '../../../../static/wodeshezhi/1.png',
|
icon: '../../../../static/wodeshezhi/1.png',
|
||||||
id: 0
|
id: 0
|
||||||
|
@ -87,31 +96,34 @@ const gotoBack = () => {
|
||||||
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 {
|
.page-icon {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-navbar {
|
.page-navbar {
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.userlist {
|
.userlist {
|
||||||
background-color: #fff;
|
|
||||||
letter-spacing: 1.5px;
|
letter-spacing: 1.5px;
|
||||||
font-weight: 700;
|
font-weight: 600;
|
||||||
|
|
||||||
.userlist-box {
|
.userlist-box {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
|
||||||
.userlist-box-text {
|
.userlist-box-text {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -121,6 +133,7 @@ const gotoBack = () => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttom {
|
.buttom {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
margin: 2rem auto 0rem;
|
margin: 2rem auto 0rem;
|
||||||
|
@ -130,8 +143,9 @@ const gotoBack = () => {
|
||||||
border-radius: 0.5rem;
|
border-radius: 0.5rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.active {
|
.active {
|
||||||
padding: 0.8rem 0rem;
|
padding: 0.2rem 0rem;
|
||||||
margin: 0.8rem 0rem;
|
margin: 0.8rem 0rem;
|
||||||
background-color: #f5f9fa;
|
background-color: #f5f9fa;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user