市北人才赋能平台 --小程序端
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.

104 lines
3.3 KiB

<!--pages/service/myService/myService.wxml-->
<wxs module="myService" src="myService.wxs"></wxs>
<view class="title">
<!-- <view>
<view>{{detail.createTime}}</view>
<view>{{detail.departName}}</view>
</view> -->
<view style="color:{{myService.getColor(detail.status)}}">{{myService.getStatus(detail.status)}}</view>
</view>
<view class="content">
<view class="date">提交时间:{{detail.createTime}}</view>
<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 class="info">
<view>
<block wx:if="{{detail.questionType == 0}}"><text style="color:#737373;">资源类型:</text>{{detail.typeName}}</block>
<block wx:if="{{detail.questionType == 1}}"><text style="color:#737373;">租房类型:</text>{{detail.typeName}}</block>
<block wx:if="{{detail.questionType == 2}}"><text style="color:#737373;">需求类型:</text>{{detail.typeName}}</block>
</view>
<block wx:if="{{detail.departName}}">
<view><text style="color:#737373;">所在街道:</text>{{detail.departName}}</view>
</block>
<block wx:if="{{detail.company}}">
<view><text style="color:#737373;">工作单位:</text>{{detail.company}}</view>
</block>
</view>
</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;color:#737373;">{{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> {{myService.getEvaluate(item.score)}}</text>
</view>
<view>{{item.commentDate}}</view>
</view>
<view class="com-bottom">{{item.comment}}</view>
</view>
</block>
</view>
</block>