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.

14 lines
562 B

<!--pages/user/subpage/system/system.wxml-->
<view class="main">
<view wx:if="{{list.length === 0}}">
<button style="color: lightgrey;" disabled>当前暂无消息</button>
</view>
<view class="card" wx:for="{{list}}" wx:key="index" style="margin-bottom: 12rpx;" data-url="{{item.url}}" data-id="{{item.id}}" bindtap="to">
<view class="title">{{item.title}}
<view class="dot" wx:if="{{item.settled===0}}"></view>
</view>
<view class="text">{{item.description}}</view>
<view class="time">{{item.createDate}}</view>
</view>
</view>