index.wxml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <!-- 导航栏 -->
  2. <van-nav-bar custom-style="background-color: #407DB8">
  3. <van-icon slot="left" name="arrow-left" size="25px" color="#fff" bind:click="backToParent"/>
  4. <text slot="title" style="color: #fff;">公告消息</text>
  5. </van-nav-bar>
  6. <!-- tabs -->
  7. <van-tabs animated active="{{ active }}" bind:change="onChange" color="#2270D9" line-width="20px" title-inactive-color="#333" title-active-color="#407DB8">
  8. <van-tab wx:for="{{ tabs }}" wx:key="id" title="{{ item.title }}" />
  9. </van-tabs>
  10. <van-cell-group>
  11. <van-cell custom-class="msg-item" wx:for="{{ msgs }}" wx:key="id" wx:for-index="idx" wx:for-item="itm" id="{{ idx }}" bind:click="goToMsgDetail">
  12. <view solt="title" class="view_top_content">
  13. <text class="msg_title" user-select>{{ itm.title }}</text>
  14. </view>
  15. <view class="content">
  16. <text user-select>{{ itm.content }}</text>
  17. </view>
  18. <view class="time">
  19. <text class="msg_date" user-select>{{ itm.scheduletime }}</text>
  20. </view>
  21. </van-cell>
  22. </van-cell-group>
  23. <!-- 无数据 -->
  24. <van-empty wx:if="{{isEmpty}}" class="custom-image" description="无数据"/>
  25. <!-- toast -->
  26. <van-toast id="van-toast" />