161 lines
5.9 KiB
Vue
161 lines
5.9 KiB
Vue
<template>
|
||
<view>
|
||
<!-- 顶部操作条 -->
|
||
<cu-custom :bgColor="'bg-main-color'" :isBack="true">
|
||
<block slot="backText">返回</block>
|
||
<block slot="content">服务订单详情</block>
|
||
</cu-custom>
|
||
<!-- 任务进度跟踪 -->
|
||
<view v-if="process === 'waitServing'" class="bg-white margin-lr-sm padding-lr padding-bottom margin-top-sm">
|
||
<uni-collapse v-model="value">
|
||
<uni-collapse-item :open="true">
|
||
<template v-slot:title>
|
||
<view class="cu-bar">
|
||
<view class="action bar-first-action">
|
||
<text class="cuIcon-titles text-main-color"></text> 任务进度跟踪
|
||
</view>
|
||
</view>
|
||
</template>
|
||
<view class="cu-timeline">
|
||
<view class="cu-item text-main-color" v-for="(item, index) in servDetail.taskTraceLine">
|
||
<view class="content shadow-blur" :class="index === 0 ? 'bg-main-color light' : 'bg-gray'">
|
||
<text class="margin-right">{{item.time}}</text>
|
||
<text>{{item.action}}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</uni-collapse-item>
|
||
</uni-collapse>
|
||
</view>
|
||
<!-- 服务单概况 -->
|
||
<view class="bg-white margin-lr-sm margin-top-sm padding">
|
||
<view class="flex align-center">
|
||
<text class="text-xl margin-right">{{servDetail.mainServOrder.servTitle}}</text>
|
||
<view class='cu-tag bg-purple radius light margin-right-sm'>服务中</view>
|
||
</view>
|
||
<view class="margin-top-sm">
|
||
<view v-for="(item, index) in servDetail.mainServOrder.orderTag" class='cu-tag radius margin-right-sm'>
|
||
{{item}}</view>
|
||
</view>
|
||
<view class="margin-top-sm">
|
||
<text class="cuIcon-location text-main-color margin-right-xs"></text>
|
||
<text>{{servDetail.mainServOrder.address}}</text>
|
||
</view>
|
||
<view class="margin-top-sm">
|
||
<text class="cuIcon-people text-main-color margin-right-xs"></text>
|
||
<text>{{servDetail.mainServOrder.person2Contact.name}}</text>
|
||
<text>{{servDetail.mainServOrder.person2Contact.phone}}</text>
|
||
</view>
|
||
<view class="margin-top-sm">
|
||
<text class="cuIcon-time text-main-color margin-right-xs"></text>
|
||
<text>预约时间:{{servDetail.mainServOrder.bookTime}}</text>
|
||
</view>
|
||
<view class="margin-top-sm">
|
||
<text class="cuIcon-time text-main-color margin-right-xs"></text>
|
||
<text>排单时间:{{servDetail.mainServOrder.boodTime}}</text>
|
||
</view>
|
||
<view class="margin-top-sm">
|
||
<text class="cuIcon-time text-main-color margin-right-xs"></text>
|
||
<text>上门时间:{{servDetail.mainServOrder.doorTime}}</text>
|
||
</view>
|
||
<view class="margin-top-sm">
|
||
<text class="cuIcon-moneybag text-main-color margin-right-xs"></text>
|
||
<text>任务金额:</text>
|
||
<text class="text-price">{{servDetail.mainServOrder.taskPrice}}</text>
|
||
</view>
|
||
<view class="margin-top-xs text-sm text-gray"
|
||
v-for="(item, index) in servDetail.mainServOrder.gratuityRecord">
|
||
追加费用:<text class="text-price">{{item.price}}</text>[{{item.type}}]
|
||
</view>
|
||
</view>
|
||
<!-- 待服务列 -->
|
||
<view class="bg-white margin-lr-sm padding-lr padding-bottom margin-top-sm">
|
||
<view class="cu-bar solid-bottom">
|
||
<view class="action bar-first-action">
|
||
<text class="cuIcon-titles text-main-color"></text> 商品信息
|
||
</view>
|
||
</view>
|
||
<view class="margin-top-sm">
|
||
<product-picked :product="servDetail.product" :pickedList="servDetail.product.pickedList" :columnTitleArr="servingColumnHeaders" :showToServNum="true"></product-picked>
|
||
</view>
|
||
</view>
|
||
<!-- 完成记录 -->
|
||
<view class="bg-white margin-lr-sm padding-lr padding-bottom margin-top-sm" v-for="(item, index) in servDetail.finishRecord">
|
||
<view class="cu-bar solid-bottom">
|
||
<view class="action bar-first-action">
|
||
<text class="cuIcon-titles text-main-color"></text> 完成记录({{item.finishList.length}})
|
||
</view>
|
||
<view class='cu-tag bg-purple radius light margin-right-sm'>{{item.finishTime}}</view>
|
||
</view>
|
||
<view class="margin-top-sm">
|
||
<product-picked :pickedList="item.finishList" :columnTitleArr="servedColumnHeaders" :showToServNum="true"></product-picked>
|
||
</view>
|
||
</view>
|
||
<!-- 订单编码和时间 -->
|
||
<view class="bg-white margin-top-sm padding margin-lr-sm margin-bottom-with-bar">
|
||
<view>订单编码:{{servDetail.serialCode}}</view>
|
||
<view class="margin-top-xs">订单时间:{{servDetail.createTime}}</view>
|
||
</view>
|
||
<!-- 底部操作栏 -->
|
||
<view class="cu-bar bg-white tabbar border shop fixed-bottom-bar">
|
||
<view class="action">
|
||
<view class="cuIcon-list"></view> 订单管理
|
||
</view>
|
||
<view class="action">
|
||
<view class="cuIcon-mail">
|
||
<view class="cu-tag badge" v-if="servDetail.talkMsgNum > 0">{{servDetail.talkMsgNum}}</view>
|
||
</view>
|
||
发送急报
|
||
</view>
|
||
<view v-if="process === 'waitToServ'" class="bg-main-color submit">立即上门</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import productPicked from '@/components/goods-card/product-picked.vue';
|
||
|
||
export default {
|
||
components: {
|
||
productPicked
|
||
},
|
||
data() {
|
||
return {
|
||
value: ['0'],
|
||
servDetail: {},
|
||
finishRecord4Show: [],
|
||
servingColumnHeaders: ['购买型号', '购买量', '待服务'],
|
||
servedColumnHeaders: ['购买型号', '购买量', '已服务'],
|
||
process: ''
|
||
}
|
||
},
|
||
onLoad(options) {
|
||
if (options) {
|
||
console.log(options)
|
||
this.process = options.process;
|
||
}
|
||
this.loadData();
|
||
},
|
||
methods: {
|
||
async loadData() {
|
||
this.servDetail = await this.$api.data('servDetail');
|
||
this.finishList4Show = this.servDetail.finishRecord;
|
||
for (let i = 0; i < this.finishList4Show.length; i++) {
|
||
let finishList = this.finishList4Show[i].finishList;
|
||
for (let j = 0; j < finishList.length; j++) {
|
||
finishList[j].secondColumnNum = finishList[j].servedNum;
|
||
}
|
||
this.finishList4Show[i].finishList = finishList;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.bar-first-action {
|
||
margin-left: unset !important;
|
||
font-size: 30rpx !important;
|
||
}
|
||
</style>
|