| 12345678910111213141516171819202122232425 |
- <!-- 为首页消息通知的组件,数据在mainData.js -->
- <view class="card" bindtap="getActivityInfo">
- <view class="profile">
- <view class="avatar-name" catchtap="getPublisherInfo">
- <image class="publisher-avatar" src="{{item.publisherAvatar}}" mode="aspectFill"></image>
- <view class="publisher-name">{{item.publisherName}}</view>
- </view>
- <view class="activity-attribute primary-color-bg text-primary-color" catchtap="filterMsgType">{{item.attribute[0]}}</view>
- </view>
- <view class="title-time">
- <view class="title">{{item.title}}</view>
- <view class="time primary-color-fg">{{item.time}}</view>
- </view>
- <view class="sub-title">{{item.subTitle}}</view>
- <imagePicker wx:if="{{item.poster != ''}}" images="{{[item.poster]}}" max="1" image-width="700" image-height="365" readonly />
- <imagePicker wx:if="{{item.poster == '' && item.photo.length != 0}}" images="{{item.photo}}" max="1" image-width="{{item.photo.length == 1 ? 700 : item.photo.length <= 4 ? 330 : 220}}" image-height="{{item.photo.length == 1 ? 700 : item.photo.length <= 4 ? 330 : 220}}" readonly />
- <view class="bottom-line">
- <view class="tags primary-color-fg"></view>
- <view class="to-detail">
- <text class="primary-color-fg" style="font-size:20rpx;">查看详情</text>
- <image class="arrow" src="/images/hollow_arrow.png" mode="aspectFill"></image>
- </view>
- </view>
- </view>
|