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
524 B

<!--pages/notice.wxml-->
<view class="container">
<view class='tab_tab' wx:for="{{notice}}" wx:key="key" data-index="{{index}}" data-item="{{item}}" bindtap="navToIndex">
<view class="function_list">
<view class='function_left'>
<view class='function_time'>{{item.time}} </view>
<view class='function_text'>{{item.content}} </view>
</view>
<view class='function_right'>
<image class="jiantou" src="../../images/x_right.png"></image>
</view>
</view>
</view>
</view>