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.
17 lines
584 B
17 lines
584 B
<!--pages/notice.wxml-->
|
|
<view class="function" style='background:#fff'>
|
|
<view class='tab_tab' wx:for="{{notice}}" wx:key="key">
|
|
<navigator url="../notice/index?Id={{item.id}}">
|
|
<view class="function_list" lang="zh_CN">
|
|
<view class='function_left'>
|
|
<view class='function_text'>{{item.content}} </view>
|
|
<view class='function_text'>{{item.time}} </view>
|
|
</view>
|
|
<view class='function_right'>
|
|
<image class="jiantou" src="../../images/x_right.png"></image>
|
|
</view>
|
|
</view>
|
|
|
|
</navigator>
|
|
</view>
|
|
</view>
|