fix
Helius
2021-02-20 5b0ffe6aed3c349f8510becda5543dde97cd7cde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<scroll-view scroll-y>
 
<view class="itemWrap" wx:if="{{model!=0}}">
   <view class="lable">
     <text class="iconfont icondianpu"></text>
     <text >订单状态</text>
   </view>
   <view class="info">{{serviceOrder.status}}</view>
   <view  class="info-s">订单编号:{{serviceOrder.serviceNo}}</view>
 </view>
 
 
 <view class="itemWrap">
   <view class="lable">
     <text class="iconfont icondianpu"></text>
     <text >门店地址</text>
   </view>
   <view class="info">{{serviceOrder.shopName}}</view>
   <view  class="info-s">{{serviceOrder.shopAddr}}</view>
 </view>
 
  <view class="itemWrap">
   <view class="lable">
     <text class="iconfont icondianpu"></text>
     <text >预约到店时间</text>
   </view>
   <view class="info">{{serviceOrder.time}}</view>
   <view  class="info-s">服务时长约{{serviceOrder.totalTime}}分钟</view>
 </view>
 
<view class="itemWrap">
   <view class="lable">
     <text class="iconfont icondianpu"></text>
     <text >服务和技师</text>
   </view>
   <view wx:for="{{serviceOrder.projs}}" >
   <view class="info">{{item.projName}}</view>
   <view  class="info-s">{{item.beautyName}}</view>
  </view>
 </view>
<form  bindsubmit="submitComment" >
   <view class="lable">
     <text class="iconfont icondianpu"></text>
     <text >服务评价</text>
   </view>
   <view class="forms" >
      <input wx:if="{{ablePl}}"  placeholder="请对我们的服务进行评价" value="{{comment}}"name="comment" ></input>
       <view wx:if="{{!ablePl}}"  >{{serviceOrder.comment}}</view>
       <view wx:if="{{!ablePl && serviceOrder.reply }}"  >商家回复 {{serviceOrder.reply}}</view>
   </view>
<view bindtap="backKhyuyue" class=" bgbtn " wx:if="{{!ablePl}}" >返回</view>
<button  formType="submit"  class=" bgbtn "  wx:if="{{ablePl}}">评论返回</button>
</form>
</scroll-view>