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

<!--package/advisoryNotice/advisoryNotice.wxml-->
<view wx:if="{{dataList.length}}">
<view wx:for="{{dataList}}" wx:key="*this">
<view class='body-item' bindtap="navToDetail" data-item="{{item}}">
<view class='body-info'>{{item.title}}</view>
<image class="right" src="/images/right.svg"></image>
</view>
</view>
</view>
<view wx:if="{{!dataList.length}}">
<!-- 暂无数据 -->
<image class="noData" src="../../images/noData.png"></image>
<view class="noTxt">暂无数据</view>
</view>