announcement_list.wxml 762 B

1234567891011121314151617181920
  1. <view class="box">
  2. <view class="view" wx:for="{{notice}}" wx:key="key" bindtap="detail" data-id="{{item.id}}" wx:if="{{notice!=''}}">
  3. <view class="top">
  4. <image src="{{img}}weapp/announcement.png" style="width:71rpx;height:32rpx;"></image>
  5. <text>{{item.created_at}}</text>
  6. </view>
  7. <view class="center">
  8. <text>{{item.title}}</text>
  9. <text>{{item.description}}</text>
  10. </view>
  11. <view class="bottom">
  12. <text>查看详情</text>
  13. <image src="/img/you.png" style="width:48rpx;height:48rpx;margin-right:-12rpx;"></image>
  14. </view>
  15. </view>
  16. <view class="none" wx:if="{{notice==''}}">
  17. <image src="/img/none.png" style="width:300rpx;height:300rpx;"></image>
  18. <text>暂无数据</text>
  19. </view>
  20. </view>