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.
 
 
 
 
xxdj1/user/pages/order/detail.vue

502 lines
14 KiB

<template>
<view class="order-pages" v-if="detail.id">
<view class="address">
<view style="padding: 30rpx;margin:20rpx 0">
<view class="name">
<image src="../../../static/dizhi.png" mode=""></image>
<text>{{detail.address_info.user_name}}</text>
<text>{{detail.address_info.mobile}}</text>
</view>
<view class="addressText">{{`${detail.address_info.address}${detail.address_info.address_info}`}}
</view>
</view>
<!-- <view class="mt-md" v-if="detail.text">
<view>订单备注</view>
<view class="c-title mt-sm">{{detail.text}}</view>
</view> -->
</view>
<view class="item-child contentInfo mt-md ml-lg mr-lg pd-lg fill-base radius-16">
<!-- <view class="flex-between pb-lg">
<view class="f-paragraph c-title max-380 ellipsis">预约内容</view>
</view> -->
<view :class="[{'mb-lg':aindex != detail.order_goods.length -1}]"
v-for="(aitem,aindex) in detail.order_goods" :key="aindex">
<view class="flex-center">
<image mode="aspectFill" class="avatar lg radius-16" :src="aitem.goods_cover"></image>
<view class="flex-1 ml-md">
<view class="flex-between">
<view class="goods-title ellipsis" :class="[{'max-300':aitem.refund_num>0}]">
{{aitem.goods_name}}
</view>
<view class="f-caption c-warning" v-if="aitem.refund_num>0">已退x{{aitem.refund_num}}</view>
</view>
<view class="flex-between" style="margin-top:40rpx;">
<view class="flex-y-baseline f-caption c-warning" style="color: #F4563C;font-size:30rpx;">¥<view class="f-title text-bold">
{{aitem.price}}
</view>
</view>
<view class="c-paragraph" style="font-size: 30rpx;color:#333333">x{{aitem.num}}</view>
</view>
</view>
</view>
<view class="btnGroup">
<view class="f-caption c-caption" style="display: flex;align-items: center;justify-content: space-between;">
<text>服务技师:</text>
<text>{{detail.coach_info.coach_name}}</text>
</view>
<view style="display: flex;margin-top:40rpx;align-items: center;justify-content: space-between;" class="f-caption c-caption">
<text>预约时间:</text>
<text>{{detail.start_time}}</text>
</view>
</view>
</view>
</view>
<!-- :style="{background:primaryColor}" -->
<view class="item-child pd-lg fill-base f-paragraph c-base" style="color:#333;background: transparent;">
<view class="flex-y-baseline">
<view class="text-bold">{{statusType[detail.pay_type]}}</view>
<view @tap.stop="$refs.refuse_item.open()" class="ml-md"
v-if="detail.pay_type == -1 && detail.coach_refund_time"> 技师拒单,查看原因</view>
</view>
<view class="f-caption mt-sm" v-if="detail.pay_type == 1 && detail.end_time > 0">请在<min-countdown
:targetTime="over_time_text" @callback="countEnd"></min-countdown>内完成支付,逾期未支付,订单将自动取消</view>
<view class="space-lg"></view>
</view>
<!-- // pay_type 1待支付,2待服务,3技师接单,4技师出发,5技师到达,6服务中,7服务完成,8待评价 -->
<view
class="menu-list flex-warp rel ml-lg mr-lg pt-lg pb-lg pl-md pr-md fill-base f-paragraph c-caption radius-16">
<view class="menu-line abs b-1px-b"></view>
<view class="item-child flex-center flex-column f-icontext c-paragraph"
:style="{color:detail.pay_type > item.pay_type -1?primaryColor:''}" v-for="(item,index) in lineList"
:key="index">
<view class="item-img fill-base flex-center mb-sm radius"
:style="{borderColor:detail.pay_type > item.pay_type -1?primaryColor:''}">
<i class="iconfont" :class="item.icon"></i>
</view>
<view>{{item.title}}</view>
</view>
</view>
<view class="mt-md ml-lg mr-lg pd-lg fill-base f-paragraph c-caption radius-16">
<view class="flex-between">
<image class="avatar sm radius" :src="detail.coach_info.work_img"></image>
<view class="c-title">{{detail.coach_info.coach_name}}</view>
</view>
<view class="flex-between mt-md">
<view>下单时间</view>
<view class="c-title">{{detail.create_time}}</view>
</view>
<view class="flex-between mt-md">
<view>服务时间</view>
<view class="c-title">{{detail.start_time}}</view>
</view>
<view class="flex-between mt-md">
<view>服务时长</view>
<view class="c-title">{{detail.time_long}}分钟</view>
</view>
<view class="flex-between mt-md">
<view>车费详情</view>
<view class="flex-y-center c-title">{{carType[detail.car_type]}}
<view class="ml-md" v-if="detail.car_type == 1">全程{{detail.distance}}</view>
</view>
</view>
<view class="flex-between mt-md" v-if="detail.car_type == 1">
<view>出行费用</view>
<view class="c-warning">出租车 ¥{{detail.car_price}}</view>
</view>
<view class="flex-between mt-md">
<view>服务项目费用</view>
<view class="c-warning">¥{{detail.init_service_price}}</view>
</view>
<view class="flex-between mt-md" v-if="detail.discount*1 > 0">
<view>卡券优惠</view>
<view class="c-warning">-¥{{detail.discount}}</view>
</view>
<view class="flex-between mt-md">
<view>支付方式</view>
<view class="flex-y-baseline c-title"><i class="iconfont mr-sm" :class="payType[detail.is_balance].icon"
:style="{color:detail.is_balance == 1 ? primaryColor : ''}"></i>{{payType[detail.is_balance].text}}
</view>
</view>
<view class="flex-between mt-md pt-md b-1px-t">
<view></view>
<view class="flex-y-baseline c-title">总计:<view class="c-warning">¥{{detail.pay_price}}</view>
</view>
</view>
</view>
<view class="mt-md ml-lg mr-lg pd-lg fill-base f-paragraph c-caption radius-16">
<view class="flex-between pb-lg c-title">订单编号:{{detail.order_code}}
</view>
<timeline :list="lineList" :info="detail"></timeline>
</view>
<view class="space-max-footer"></view>
<view class="footer-info fix fill-base">
<view class="flex-between pd-lg">
<view></view>
<view class="flex-center f-desc c-title">
<!-- #ifdef MP-WEIXIN -->
<button :open-type="configInfo.im_type == 2?'contact':''"
@tap.stop="configInfo.im_type == 1 ? $util.goUrl({url:configInfo.mobile,openType:'call'}) : ''"
class="clear-btn item-btn flex-center f-desc" style="margin-right: 20rpx;border-radius: 100rpx;"
v-if="detail.pay_type != -1">联系客服</button>
<!-- #endif -->
<!-- #ifndef MP-WEIXIN -->
<button @tap.stop="$util.goUrl({url:configInfo.mobile,openType:'call'})"
class="clear-btn item-btn flex-center f-desc" style="margin-right: 20rpx;border-radius: 100rpx;"
v-if="detail.pay_type != -1">联系客服</button>
<!-- #endif -->
<block v-if="statusPayType.includes(detail.pay_type) || detail.can_refund*1>0">
<!-- 待支付 -->
<block v-if="detail.pay_type == 1">
<view @tap.stop="toCancel" class="item-btn flex-center radius">取消订单</view>
<view @tap.stop="toPay" class="item-btn flex-center ml-md c-base radius"
:style="{background:primaryColor}">
去支付
</view>
</block>
<!-- 支付超时 -->
<block v-if="detail.pay_type == -1">
<view @tap.stop="toCancel" class="item-btn flex-center radius">删除</view>
</block>
<!-- 待服务 -->
<view @tap.stop="goDetail('refund')" class="item-btn flex-center radius"
v-if="detail.can_refund*1>0">申请退款</view>
<!-- 已完成 -->
<block v-if="detail.pay_type == 7">
<view @tap.stop="goDetail('evaluate')" class="item-btn flex-center radius"
v-if="!detail.is_comment">去评价</view>
<view @tap.stop="toAgain" class="item-btn flex-center ml-md c-base radius"
:style="{background:primaryColor}">
再来一单
</view>
</block>
</block>
</view>
</view>
<view class="space-safe"></view>
</view>
</block>
<common-popup @confirm="confirmCancel" ref="cancel_item" type="CANCEL_ORDER" :info="popupInfo"></common-popup>
<common-popup @confirm="confirmDel" ref="del_item" type="DELETE_ORDER" :info="popupInfo"></common-popup>
<uni-popup ref="refuse_item" type="center" :custom="true">
<view class="common-popup-content fill-base pd-lg radius-34">
<view class="title">拒单原因</view>
<scroll-view scroll-y @touchmove.stop.prevent class="refund-text mt-lg">
<view>
<text decode="emsp"
style="word-break:break-all;">{{detail.coach_refund_text || '没有填写原因哦'}}</text>
</view>
</scroll-view>
<view class="button">
<view @tap.stop="$refs.refuse_item.close()" class="item-child c-base"
:style="{background: primaryColor,color:'#fff'}">知道了</view>
</view>
</view>
</uni-popup>
</view>
</template>
<script>
import {
mapState,
mapActions,
mapMutations
} from "vuex"
import timeline from '@/components/timeline.vue'
export default {
components: {
timeline
},
data() {
return {
options: {},
statusPayType: [-1, 1, 7],
statusType: {
'-1': '已取消',
1: '待支付',
2: '待服务',
3: '技师接单',
4: '技师出发',
5: '技师到达',
6: '服务中',
7: '已完成',
8: '已评价',
},
carType: {
0: '公交/地铁',
1: '出租车'
},
payType: {
0: {
icon: 'iconweixinzhifu1 c-success',
text: '微信支付'
},
1: {
icon: 'iconqianbao',
text: '账户余额'
},
},
lineList: [{
pay_type: 3,
title: '技师接单',
time: 'receiving_time',
icon: 'iconjishijiedan'
}, {
pay_type: 4,
title: '技师出发',
time: 'serout_time',
icon: 'iconjishichufa'
}, {
pay_type: 5,
title: '技师到达',
time: 'arrive_time',
icon: 'iconjishidaoda'
}, {
pay_type: 6,
title: '开始服务',
time: 'start_service_time',
icon: 'iconjishifuwu'
}, {
pay_type: 7,
title: '服务完成',
time: 'order_end_time',
icon: 'iconjishiwancheng'
}],
detail: {
pay_type: 0
},
popupInfo: {},
lockTap: false
}
},
computed: mapState({
primaryColor: state => state.config.configInfo.primaryColor,
subColor: state => state.config.configInfo.subColor,
configInfo: state => state.config.configInfo,
userInfo: state => state.user.userInfo,
over_time_text() {
return new Date().getTime() + this.detail.over_time * 1000
}
}),
onLoad(options) {
this.options = options
this.initIndex()
},
methods: {
...mapActions(['getConfigInfo']),
...mapMutations(['updateUserItem']),
async initIndex(refresh = false) {
// #ifdef H5
// if (!refresh && this.$jweixin.isWechat()) {
// await this.$jweixin.initJssdk();
// this.$jweixin.wxReady(() => {
// this.$jweixin.hideOptionMenu()
// })
// }
// #endif
if (!this.configInfo.id || refresh) {
await this.getConfigInfo()
}
let {
id
} = this.options
let data = await this.$api.order.orderInfo({
id
})
this.$util.setNavigationBarColor({
bg: this.primaryColor
})
data.is_balance = data.balance * 1 > 0 ? 1 : 0
this.detail = data
},
initRefresh() {
this.initIndex(true)
},
countEnd() {
this.$util.log("倒计时完了")
setTimeout(() => {
this.initRefresh()
this.$util.back()
}, 1000)
},
// 取消/删除订单
async toCancel() {
let {
order_code,
order_goods,
pay_type
} = this.detail
let {
goods_cover: image,
} = order_goods[0]
this.popupInfo = {
name: `系统单号:${order_code}`,
image,
}
let refs_key = pay_type == -1 ? 'del_item' : 'cancel_item'
this.$refs[refs_key].open()
},
// 确认:取消订单
async confirmCancel() {
let {
id,
} = this.detail
await this.$api.order.cancelOrder({
id
})
this.$util.showToast({
title: `取消成功`
})
this.detail.pay_type = -1
this.$refs.cancel_item.close()
this.$util.back()
},
// 确认:删除订单
async confirmDel() {
let {
id,
} = this.detail
await this.$api.order.delOrder({
id
})
this.$util.showToast({
title: `删除成功`
})
this.$refs.del_item.close()
this.$util.back()
setTimeout(() => {
this.$util.goUrl({
url: 1,
openType: 'navigateBack'
})
}, 1000)
},
// 去支付
async toPay(index) {
if (this.lockTap) return;
this.lockTap = true;
this.$util.showLoading()
let {
id
} = this.detail
try {
let {
pay_list
} = await this.$api.order.rePayOrder({
id
})
this.$util.hideAll()
if (pay_list) {
try {
await this.$util.pay(pay_list)
this.initRefresh()
this.lockTap = false;
this.$util.back()
} catch (e) {
this.lockTap = false;
return;
}
}
} catch (e) {
setTimeout(() => {
this.lockTap = false
this.$util.hideAll()
}, 2000)
}
},
// 订单详情/申请退款/去评价
goDetail(page) {
let {
id
} = this.detail
let url = `/user/pages/order/${page}?id=${id}`
this.$util.goUrl({
url
})
},
// 再来一单
async toAgain() {
let {
id: order_id,
coach_id
} = this.detail
await this.$api.order.onceMoreOrder({
order_id
})
this.$util.goUrl({
url: `/user/pages/order?id=${coach_id}`
})
}
}
}
</script>
<style lang="scss">
.common-popup-content {
.refund-text {
width: 540rpx;
min-height: 200rpx;
max-height: 50vh;
}
}
.address{
background: #FFFFFF;
border-radius: 30rpx;
margin:0 24rpx;
.name{
display:flex;
align-items: center;
color: #222222;
font-size:28rpx;
image{
width:30rpx;
height:30rpx;
}
text{
margin-left:21rpx;
}
}
.addressText{
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 500;
color: #222222;
margin-top:25rpx;
}
}
.contentInfo{
.goods-title{
font-size: 34rpx;
font-family: Alibaba PuHuiTi;
font-weight: 400;
color: #333333;
}
}
.btnGroup{
margin-top:30rpx;
padding-top:30rpx;
border-top: 1px solid #EAEAEA;
color: #333333;
font-size: 28rpx;
}
</style>