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.
19 lines
689 B
19 lines
689 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_time'>{{item.time}}</view>
|
|
<view class="function_list">
|
|
<view class='function_content'>
|
|
<view class='function_title'>{{item.title}}</view>
|
|
<view class='function_text'>{{item.content}}</view>
|
|
<view class='line'></view>
|
|
</view>
|
|
|
|
|
|
<view class='function_bottom'>
|
|
<view class='function_title'>查看详情</view>
|
|
<image class="jiantou" src="../../images/x_right.png"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|