市北党建引领小程序初始化
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

23 lines
994 B

<view class="header">
<image src="../../images/back.png" class="back" style=" top: {{statusHeight}}px;" bindtap="back"></image>
<!-- <image class="header-bg" src="../../images/volunteer/redSail_bg.png" mode="widthFix" /> -->
<view class="navigation" style="height: {{navigationHeight}}px; top: {{statusHeight}}px;">
网格风采
</view>
</view>
<view class="list">
<view wx:for="{{list}}" wx:key="index" class="listItme">
<view>
<image src="{{item.imgUrl}}" class="icon"></image>
</view>
<view style="display: flex;flex-direction: column;justify-content: space-between;">
<view style="font-size:28rpx;font-weight: 600;">{{item.title}}</view>
<view style="color:#ccc;font-size:20rpx;display: flex;flex-direction: row;justify-content: space-between;">
<view style="width: 60%;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;">{{item.address}}</view>
<view>
{{item.createTime}}
</view>
</view>
</view>
</view>
</view>