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.
|
|
|
<wxs src="../../../../utils/filter.wxs" module="filter"></wxs>
|
|
|
|
<view class="event-detail">
|
|
|
|
|
|
|
|
<view class="event-content">
|
|
|
|
<view class="user-info">
|
|
|
|
<image class="avatar" src="{{eventObj.avatar}}" />
|
|
|
|
<view class="identify">
|
|
|
|
<view class="identify-top">
|
|
|
|
<view class="nickname">{{eventObj.nickname}}</view>
|
|
|
|
<image class="party-flag" wx:if="{{eventObj.partyFlag == '1'}}" src="../../images/ic_dangbiaoqian.png" />
|
|
|
|
</view>
|
|
|
|
<view class="identify-bottom">{{eventObj.distributeTime}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="issue-content">{{eventObj.content}}</view>
|
|
|
|
<view class="image-list">
|
|
|
|
<image
|
|
|
|
catchtap="previewImage"
|
|
|
|
data-src="{{item}}"
|
|
|
|
wx:for="{{eventObj.images}}"
|
|
|
|
wx:for-index="index"
|
|
|
|
wx:for-item="item"
|
|
|
|
mode="widthFix"
|
|
|
|
wx:key="{{index}}"
|
|
|
|
class="image-item"
|
|
|
|
src="{{item}}" />
|
|
|
|
</view>
|
|
|
|
<view class="tags">{{filter.getTags(eventObj.tagNames)}}</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="handle-progress">
|
|
|
|
<view class="title">处理进展</view>
|
|
|
|
<view class="handle-progress-content">{{eventType === '未通过' ? '【未通过】' : '【待审核】'}}{{eventObj.advice}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|