fix: 页面优化

property-only-app
wx-jincw 4 weeks ago
parent 16ec2d5e1f
commit b6dce6a46b

@ -29,17 +29,12 @@
"path": "pages/user/index", "path": "pages/user/index",
"style": { "style": {
//"navigationBarTitleText": "个人中心", //"navigationBarTitleText": "个人中心",
// #ifdef MP || APP-PLUS "navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTextStyle": "black", "navigationBarTextStyle": "black"
"navigationBarBackgroundColor": "#409EFF", // #ifdef H5
// #endif ,
"app-plus": { "navigationStyle": "custom"
// #ifdef APP-PLUS // #endif
"titleNView": {
"type": "default"
}
// #endif
}
} }
}, },
{ {

@ -115,7 +115,7 @@
<!-- 关于我们 --> <!-- 关于我们 -->
<view class="aboutUs acea-row row-center-wrapper" @click="goAboutUs" style="margin-top: 30rpx; padding: 0 30rpx;">关于我们</view> <view class="aboutUs acea-row row-center-wrapper" @click="goAboutUs" style="margin-top: 30rpx; padding: 0 30rpx;">关于我们</view>
<!-- 退出登录 --> <!-- 退出登录 -->
<view class="logOut acea-row row-center-wrapper" @click="outLogin" style="margin-top: 20rpx; padding: 0 30rpx;">退出登</view> <view v-if="uid" class="logOut acea-row row-center-wrapper" @click="outLogin" style="margin-top: 20rpx; padding: 0 30rpx;">退</view>
</scroll-view> </scroll-view>
</view> </view>
<!-- #ifdef MP --> <!-- #ifdef MP -->
@ -720,16 +720,23 @@
.aboutUs, .aboutUs,
.logOut { .logOut {
position: relative; position: relative;
font-size: 32rpx; font-size: 32rpx;
text-align: center; text-align: center;
width: 690rpx; width: 690rpx;
height: 90rpx; height: 90rpx;
border-radius: 45rpx; border-radius: 45rpx;
margin: 30rpx auto 0 auto; margin: 30rpx auto 0 auto;
z-index: 1; z-index: 1;
color: white; background: #f6f8fb;
border: 2rpx solid white !important; color: #333;
border: 2rpx solid #dfe5ee !important;
}
.logOut {
color: #e34d59;
border-color: #f3c9cd !important;
background: #fff5f6;
} }
} }
</style> </style>
Loading…
Cancel
Save