12345678910111213141516171819202122232425262728293031323334 |
- <My_BannerSwiper swiperBannerList="{{swiperBannerList}}"></My_BannerSwiper>
- <My_NavTabs tabsList="{{tabsList}}" tabsIndex="{{tabsIndex}}" bindsetIndex="setIndex" />
- <!-- 通告广场 -->
- <view class="annunciatr_box" wx:if="{{tabsIndex==0}}">
- <!-- 圆角按钮tabs -->
- <My_RoundedCornerButtonTabs list="{{roundedList}}" bind:tabsSelectedIitem="tabsSelectedIitem"></My_RoundedCornerButtonTabs>
- <!-- 列表展示区 -->
- <annunciateList list="{{annunciateList}}"></annunciateList>
- <My_pageReachBottom dummyStatus="{{annunciateList.length>=1}}" loadMore="{{pageNumber>=pageTotal}}"></My_pageReachBottom>
- </view>
- <!-- 历史发布 -->
- <view class="annunciatr_box" wx:if="{{tabsIndex==1}}" style="padding-top: 2rpx; padding-bottom: 0;">
- <!-- 列表展示区 -->
- <view class="ann-box" wx:for="{{annunciateList}}" data-index="{{index}}" catchtap="toDetails">
- <view class="ann-img">
- <image wx:if="{{item.attinfos[0].fobsurl}}" src="{{item.attinfos[0].fobsurl}}" mode="aspectFill"></image>
- <image src="/static/annunciate/cover.png" mode="aspectFill"></image>
- </view>
- <view class="ann-text ls">
- <view class="ann-text-title u-line-1">{{item.ftitle}}</view>
- <view class="ann-text-center u-line-2">{{item.fsummary}}</view>
- <view class="ann-text-bottom u-line-1">
- <view>12-07 12:24</view>
- <view class="change">
- <van-button block custom-class='custom-class l' data-index="{{index}}" catchtap="toQueryData">浏览数据</van-button>
- <van-button block custom-class='custom-class r' data-index="{{index}}" catchtap="toChang">编辑通告</van-button>
- </view>
- </view>
- </view>
- </view>
- <My_pageReachBottom dummyStatus="{{annunciateList.length>=1}}" loadMore="{{pageNumber>=pageTotal}}"></My_pageReachBottom>
- </view>
- <!-- 右侧吸附固定按钮 -->
- <My_fixedButton bindclick='toAnnounce' />
|