| | |
| | | <view class="list-content"> |
| | | <view class="list-content-row" v-for="item in orderList"> |
| | | <view class="flex justify-between align-center font-15"> |
| | | <view> |
| | | <text class="mr-20">{{item.name}}</text> |
| | | <view class="list-content-name"> |
| | | <text class="mr-20 font-14">{{item.name}}</text> |
| | | <text>x{{item.count}}</text> |
| | | </view> |
| | | <text class="blue font-16">¥{{item.price}}</text> |
| | |
| | | <view class="list-header"> |
| | | <text>客户评价</text> |
| | | </view> |
| | | <view class="list-content"> |
| | | <view class="list-content gray"> |
| | | {{orderInfo.comment}} |
| | | </view> |
| | | </view> |
| | | </view> |
| | |
| | | }, |
| | | methods:{ |
| | | loadServiceOrderDetail(id){ |
| | | console.log(id) |
| | | this.$httpUtils.request('/api/serviceOrder/findServiceOrderDetail/'+id).then((res) => { |
| | | if(res.status == 200){ |
| | | console.log(res) |
| | | let result = res.mapInfo.detail; |
| | | this.orderInfo = result; |
| | | this.orderList = result.items; |
| | |
| | | border-bottom: 0; |
| | | padding-bottom: 0; |
| | | } |
| | | .list-content-name{ |
| | | max-width: 550rpx; |
| | | } |
| | | .font-through{ |
| | | text-decoration: line-through; |
| | | } |