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.
40 lines
1.9 KiB
40 lines
1.9 KiB
<!-- <view class="alliance-detail">
|
|
<parser html="{{noticeObjContent}}"></parser>
|
|
</view> -->
|
|
<view class="alliance-detail-card">
|
|
<view class="alliance-info">
|
|
<view class="info-head-img"><image src="{{noticeObj.headPic}}" /></view>
|
|
<view class="info-content">
|
|
<view class="unionName">{{noticeObj.unionName}}</view>
|
|
<view class="contacts">{{noticeObj.contacts}}</view>
|
|
<view class="phone">{{noticeObj.phone}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="alliance-introduce {{ isShow ? 'intro-show' : 'intro-hide' }}">
|
|
<view class="title">联盟简介</view>
|
|
<parser html="{{noticeObjContent}}"></parser>
|
|
<view class="bottom" bindtap="isShowOrHide" wx:if="{{isShowBtn}}">{{isShow ? '收起' : '展开'}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="alliance-detail-card" wx:if="{{activeList.length > 0}}">
|
|
<view class="active-list">
|
|
<view class="title">共建活动</view>
|
|
<block wx:for="{{activeList}}" wx:key="index">
|
|
<view class="active-item" bindtap="navigateToActDetail" data-id="{{item.id}}">
|
|
<view class="active-img"><image src="{{item.headPic}}" /></view>
|
|
<view class="active-content">
|
|
<view class="active-contacts">{{item.title}}</view>
|
|
<view class="time-box">
|
|
<view class="time-label">时间: </view>
|
|
<view class="time-content">
|
|
<view class="active-time">{{item.actStartTime}} 至</view>
|
|
<view class="active-time">{{item.actEndTime}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="active-line" wx:if="{{index < activeList.length - 1}}"></view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
<load-more loadMoreType="{{loadMoreType}}" loadMoreVisible="{{loadMoreVisible}}"></load-more>
|
|
|