|
@@ -1,6 +1,19 @@
|
|
|
<template>
|
|
|
<view class="message">
|
|
|
- <view class="header-group bord">
|
|
|
+
|
|
|
+
|
|
|
+ <view class="top custom_box" style="background: linear-gradient(180deg, rgb(254,245,246), rgb(245,245,245)); color: black;" >
|
|
|
+ <!-- #ifdef MP || APP-PLUS -->
|
|
|
+ <view class="sys-head">
|
|
|
+ <view class="sys-bar" :style="{ height: sysHeight }"></view>
|
|
|
+ <!-- #ifdef MP -->
|
|
|
+ <view class="sys-title">消息</view>
|
|
|
+ <!-- #endif -->
|
|
|
+ </view>
|
|
|
+ <!-- #endif -->
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="header-group bord" :style="{ 'margin-top': sysHeightTop}">
|
|
|
<view class="tabs">
|
|
|
<u-tabs class="defalt-utabs" :is-scroll="false" :list="navigationList" @change="changeNav" lineColor="#B22338" :current="tabIndex"
|
|
|
:inactiveStyle="{ color: '#999999' }" :activeStyle="{ color: '#B22338', fontWeight: 'bold' }"
|
|
@@ -25,6 +38,7 @@
|
|
|
|
|
|
<script>
|
|
|
let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
|
|
+let sysHeightTop = (uni.getSystemInfoSync().statusBarHeight + 43) + 'px';
|
|
|
import {
|
|
|
mapGetters
|
|
|
} from "vuex";
|
|
@@ -45,6 +59,8 @@ export default {
|
|
|
mixins: [colors],
|
|
|
data () {
|
|
|
return {
|
|
|
+ sysHeight: sysHeight,
|
|
|
+ sysHeightTop: sysHeightTop,
|
|
|
height:'550px',
|
|
|
tabIndex:0,
|
|
|
navigationList: [{
|
|
@@ -85,36 +101,38 @@ export default {
|
|
|
.message {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
+}
|
|
|
|
|
|
- .sys-head {
|
|
|
- position: relative;
|
|
|
+
|
|
|
+.sys-head {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ // background: linear-gradient(90deg, $bg-star1 0%, $bg-end1 100%);
|
|
|
+
|
|
|
+ .bg {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
width: 100%;
|
|
|
- // background: linear-gradient(90deg, $bg-star1 0%, $bg-end1 100%);
|
|
|
-
|
|
|
- .bg {
|
|
|
- position: absolute;
|
|
|
- left: 0;
|
|
|
- top: 0;
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- background: var(--view-theme);
|
|
|
- background-size: 100% auto;
|
|
|
- background-position: left bottom;
|
|
|
- }
|
|
|
-
|
|
|
- .sys-title {
|
|
|
- z-index: 10;
|
|
|
- position: relative;
|
|
|
- height: 43px;
|
|
|
- text-align: left;
|
|
|
- line-height: 43px;
|
|
|
- font-size: 36rpx;
|
|
|
- color: rgba(17, 17, 17, 1);
|
|
|
- font-weight: bolder;
|
|
|
- padding-left: 36rpx;
|
|
|
- }
|
|
|
+ height: 100%;
|
|
|
+ background: var(--view-theme);
|
|
|
+ background-size: 100% auto;
|
|
|
+ background-position: left bottom;
|
|
|
}
|
|
|
|
|
|
+ .sys-title {
|
|
|
+ font-family: STYuanti-SC-Regular, STYuanti-SC;
|
|
|
+ z-index: 10;
|
|
|
+ position: relative;
|
|
|
+ height: 43px;
|
|
|
+ text-align: left;
|
|
|
+ line-height: 43px;
|
|
|
+ font-size: 36rpx;
|
|
|
+ color: rgba(17, 17, 17, 1);
|
|
|
+ /*font-weight: bolder;*/
|
|
|
+ font-weight: 400;
|
|
|
+ padding-left: 36rpx;
|
|
|
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|