|
|
|
<!-- pages/user/myWhistle/whistleDetail/index.wxml -->
|
|
|
|
<wxs module="whistle" src="../whistle.wxs"></wxs>
|
|
|
|
|
|
|
|
<view class="title">
|
|
|
|
<view>
|
|
|
|
<view>{{detail.createTime}}</view>
|
|
|
|
<view>{{detail.departName}}</view>
|
|
|
|
</view>
|
|
|
|
<view style="color:{{whistle.getColor(detail.status)}}">{{whistle.getStatus(detail.status)}}</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="content">
|
|
|
|
<view class="con">{{detail.content}}</view>
|
|
|
|
|
|
|
|
<block wx:if="{{detail.picList}}">
|
|
|
|
<view class="image-show">
|
|
|
|
<block wx:for="{{img}}">
|
|
|
|
<!-- <view class="img-box"> -->
|
|
|
|
<block wx:if="{{item}}">
|
|
|
|
<image class="img-box" src="{{item}}" data-src="{{item}}" bindtap="previewImage"></image>
|
|
|
|
</block>
|
|
|
|
<!-- </view> -->
|
|
|
|
</block>
|
|
|
|
</view>
|
|
|
|
</block>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="process">
|
|
|
|
|
|
|
|
<view class="text-title">处理进度</view>
|
|
|
|
<view class="table">
|
|
|
|
<block wx:for="{{detail.list}}">
|
|
|
|
<view class="tb">
|
|
|
|
|
|
|
|
<view class="timeline">
|
|
|
|
<view class="line"></view>
|
|
|
|
<view class="circle">
|
|
|
|
<!-- <text class="fa fa-dot-circle-o fa-lg"></text> -->
|
|
|
|
|
|
|
|
<text class="fa fa-dot-circle-o fa-lg"></text>
|
|
|
|
</view>
|
|
|
|
<view class="line"></view>
|
|
|
|
</view>
|
|
|
|
<view class="content-1">
|
|
|
|
<view class="process-tit"><text style="font-size:16px">{{item.handleType}}</text><text style="font-size:13px">{{item.handleDate}}</text></view>
|
|
|
|
<text style="font-size:13px;color:#737373;">{{item.handleSuggestions}}</text>
|
|
|
|
<block wx:if="{{item.handleDepartName}}">
|
|
|
|
<text style="font-size:13px">处理部门:{{item.handleDepartName}}</text>
|
|
|
|
</block>
|
|
|
|
</view>
|
|
|
|
<!-- <view class="time">{{item.handleDate}}</view> -->
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</block>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<block wx:if="{{detail.status == 1}}">
|
|
|
|
<button class="btn1" bindtap="evaluation">我要评价</button>
|
|
|
|
</block>
|
|
|
|
|
|
|
|
<block wx:if="{{score}}">
|
|
|
|
<view class="score">
|
|
|
|
<view class="text-title">
|
|
|
|
评价反馈
|
|
|
|
</view>
|
|
|
|
<block wx:for="{{commentList}}">
|
|
|
|
<view class="comment">
|
|
|
|
<view style="font-weight:800;">
|
|
|
|
{{item.departName}}
|
|
|
|
</view>
|
|
|
|
<view class="com-top">
|
|
|
|
<view>
|
|
|
|
<van-rate readonly value="{{ item.score }}" color="#ee0a24"/> <text> {{whistle.getEvaluate(item.score)}}</text>
|
|
|
|
</view>
|
|
|
|
<view>{{item.commentDate}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="com-bottom">{{item.comment}}</view>
|
|
|
|
</view>
|
|
|
|
</block>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</block>
|