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.

index.wxml 1.1KB

12345678910111213141516171819202122232425262728
  1. <view class="container">
  2. <view class="guide-box">
  3. <view class="guide-title">办事指南</view>
  4. <view class="guide-link" bind:tap="toApplyFor">
  5. <text>我要申请</text>
  6. <text wx:if="{{conut && conut < 101}}" style="font-size: 28rpx;padding-top: 16rpx;">名额剩余({{conut}})</text>
  7. </view>
  8. </view>
  9. <view class="publicity-box">
  10. <view class="publicity-header">
  11. <view>信息公示</view>
  12. <view style="font-size: 24rpx;color: gray;" bind:tap="toMore">更多</view>
  13. </view>
  14. <view class="publicity-list" wx:if="{{publicityList.length > 0}}">
  15. <block wx:for="{{publicityList}}">
  16. <view class="publicity-item" data-id="{{item.id}}" bind:tap="toDetail">
  17. <view class="publicity-label">
  18. <view class="publicity-name">{{item.title}}</view>
  19. <view class="publicity-time">发布时间:{{item.releaseDate}}</view>
  20. </view>
  21. </view>
  22. </block>
  23. </view>
  24. <view wx:else style="display: flex;align-items: center; justify-content: center;">
  25. <image src="/icons/nodata.png" mode="aspectFit" style="width: 360rpx;height: 360rpx;"/>
  26. </view>
  27. </view>
  28. </view>