master
xielei 2024-11-11 13:23:50 +08:00
parent 834f2db1af
commit c7a027ed77
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<template> <template>
<view :style="{height:'100vh',overflow:'hidden',backgroundColor: '#f0f0f0',}"> <view :style="{height:'100vh',overflow:'hidden',backgroundColor: '#f0f0f0',}">
<u-navbar title="消息中心1" :autoBack="true" :titleStyle="{ <u-navbar title="消息中心" :autoBack="true" :titleStyle="{
fontSize:'18px' fontSize:'18px'
}" :height='44' :safeAreaInsetTop=true leftIconSize='20' leftIconColor='rgb(153, 153, 153)'> }" :height='44' :safeAreaInsetTop=true leftIconSize='20' leftIconColor='rgb(153, 153, 153)'>
</u-navbar> </u-navbar>

View File

@ -24,7 +24,7 @@
</view> </view>
</view> </view>
<view style="max-height:calc(100vh - 160px); overflow-y:auto;"> <view style="max-height:calc(100vh - 160px); overflow-y:auto;">
<view class="" v-for="(item,index) in list" :key="index" style="margin: 10px;background-color: #fff;padding: 10px;"> <view class="" v-for="(item,index) in list" :key="index" style="margin: 10px;background-color: #fff;padding: 10px;" @click="toDetail(item)">
<view class="item"> <view class="item">
<view class="align-center"> <view class="align-center">
<view class="blueTiao"> <view class="blueTiao">
@ -35,7 +35,7 @@
</view> </view>
</view> </view>
<view class="titleRight" @click="toDetail(item)"> <view class="titleRight" >
{{item.publishTime}} {{item.publishTime}}
</view> </view>
</view> </view>