| 123456789101112131415161718192021222324252627282930 |
- <!-- 导航栏 -->
- <van-nav-bar custom-style="background-color: #407DB8">
- <van-icon slot="left" name="arrow-left" size="25px" color="#fff" bind:click="backToParent"/>
- <text slot="title" style="color: #fff;">公告消息</text>
- </van-nav-bar>
- <!-- tabs -->
- <van-tabs animated active="{{ active }}" bind:change="onChange" color="#2270D9" line-width="20px" title-inactive-color="#333" title-active-color="#407DB8">
- <van-tab wx:for="{{ tabs }}" wx:key="id" title="{{ item.title }}" />
- </van-tabs>
- <van-cell-group>
- <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">
- <view solt="title" class="view_top_content">
- <text class="msg_title" user-select>{{ itm.title }}</text>
-
- </view>
- <view class="content">
- <text user-select>{{ itm.content }}</text>
- </view>
- <view class="time">
- <text class="msg_date" user-select>{{ itm.scheduletime }}</text>
- </view>
- </van-cell>
- </van-cell-group>
- <!-- 无数据 -->
- <van-empty wx:if="{{isEmpty}}" class="custom-image" description="无数据"/>
- <!-- toast -->
- <van-toast id="van-toast" />
|