1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <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>
- <!-- 列表展示区 -->
- <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/tacitly-approve/MRproduct.png" mode="aspectFill"></image>
- </view>
- <view class="ann-text">
- <view class="ann-text-title u-line-1">{{item.ftitle}}</view>
- <view class="ann-text-center u-line-1">{{item.fsummary}}</view>
- <view class="ann-text-bottom u-line-1">
- <view class="userMsg">
- <view class="img">
- <image src="{{item.headportraiturl}}"></image>
- </view>
- <view class="u-line-1" style="max-width: 160rpx;">{{item.fbrand}}</view>
- <view style="margin-left: 8rpx;">{{item.checkdate}}</view>
- </view>
- <view>{{item.freadcount}}次浏览</view>
- </view>
- </view>
- </view>
- <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/tacitly-approve/MRproduct.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-1">{{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' />
|