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.
18 lines
458 B
18 lines
458 B
3 years ago
|
<view class="container">
|
||
|
<view class="nav">
|
||
|
<image src="../../../images/left.png"></image>
|
||
|
系统消息
|
||
|
</view>
|
||
|
<view class="system">
|
||
|
<block wx:for="{{sysList}}" wx:key="sysList">
|
||
|
<view class="list">
|
||
|
<view class="list-top">
|
||
|
{{item.title}}<text>{{item.time}}</text>
|
||
|
</view>
|
||
|
<view class="list-content">
|
||
|
{{item.content}}
|
||
|
</view>
|
||
|
</view>
|
||
|
</block>
|
||
|
</view>
|
||
|
</view>
|