|
|
|
@ -138,7 +138,7 @@
|
|
|
|
|
<image mode="heightFix" class="img" :src="staticImage.selectPet"/> |
|
|
|
|
</view> |
|
|
|
|
<view class="order-item pet-page-item row"> |
|
|
|
|
<PetPage class="pet-page" :showCancel="true" type="lists" @change="selectPet" @del="delPet"></PetPage> |
|
|
|
|
<PetPage ref="petPage" class="pet-page" :showCancel="true" type="lists" @change="selectPet" @del="delPet"></PetPage> |
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -222,7 +222,7 @@
|
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class=""> |
|
|
|
|
<view class="" v-if="!is_worker"> |
|
|
|
|
<MzButton |
|
|
|
|
title="立即下单" |
|
|
|
|
button-color="#4DC3B8" |
|
|
|
@ -232,6 +232,16 @@
|
|
|
|
|
> |
|
|
|
|
</MzButton> |
|
|
|
|
</view> |
|
|
|
|
<view class="" v-else> |
|
|
|
|
<MzButton |
|
|
|
|
title="保存订单" |
|
|
|
|
button-color="#4DC3B8" |
|
|
|
|
font-color="#FFFFFF" |
|
|
|
|
button-width="200rpx" |
|
|
|
|
@click="setCacheOrder" |
|
|
|
|
> |
|
|
|
|
</MzButton> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<uv-calendar ref="calendar" mode="multiple" title="选择服务日期" color="#4DC3B8" round="40rpx"> |
|
|
|
|
<template #footer> |
|
|
|
@ -375,7 +385,7 @@
|
|
|
|
|
import {cardDetail} from "@/api/card"; |
|
|
|
|
import {getAddressList} from "@/api/address"; |
|
|
|
|
import image from "@/config/image"; |
|
|
|
|
import {createOrderPrice, getOrderPrice, getStoreService} from "@/api/order"; |
|
|
|
|
import {createOrderPrice, getOrderPrice, getStoreService, orderGet, orderSave} from "@/api/order"; |
|
|
|
|
import pet from "@/pages/Pet/index.vue"; |
|
|
|
|
import {getConfig} from "@/api/other"; |
|
|
|
|
import log from "@/utils/log"; |
|
|
|
@ -477,22 +487,73 @@
|
|
|
|
|
isPay:false, |
|
|
|
|
type:1, |
|
|
|
|
add_time:0, |
|
|
|
|
is_worker:false, |
|
|
|
|
sign:'', |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
onLoad(options) { |
|
|
|
|
this.id = options.id; |
|
|
|
|
this.type = options.type || 1; |
|
|
|
|
this.sign = options.sign || ''; |
|
|
|
|
if(this.sign!=='')this.getCacheOrder(); |
|
|
|
|
let workerToken = uni.getStorageSync('workerToken'); |
|
|
|
|
if(workerToken)this.is_worker = true; |
|
|
|
|
}, |
|
|
|
|
updated() { |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
onShow(){ |
|
|
|
|
if(!this.isPay){ |
|
|
|
|
if(!this.isPay && this.sign === ''){ |
|
|
|
|
this.getDefaultAddress(); |
|
|
|
|
this.getUserCoupons(); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
onShareAppMessage() { |
|
|
|
|
return { |
|
|
|
|
title:'预约服务', |
|
|
|
|
path:'/pages/OrderPage/index?sign='+this.sign, |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
setCacheOrder(){ |
|
|
|
|
let data = {}; |
|
|
|
|
data.type = this.type; |
|
|
|
|
data.address = this.address; |
|
|
|
|
data.timeList = this.timeList; |
|
|
|
|
data.addServiceList = this.addServiceList; |
|
|
|
|
data.addServiceChecked = this.addServiceChecked; |
|
|
|
|
data.petChecked = this.petChecked; |
|
|
|
|
data.coupons = this.coupons; |
|
|
|
|
data.add_time = this.add_time; |
|
|
|
|
data.basicServiceList = this.basicServiceList; |
|
|
|
|
data.basicServiceChecked = this.basicServiceChecked; |
|
|
|
|
orderSave({sign:this.sign,data:JSON.stringify(data)}).then((res) => { |
|
|
|
|
this.sign = res.data.sign; |
|
|
|
|
}); |
|
|
|
|
log('orderData',data); |
|
|
|
|
api.success('保存成功') |
|
|
|
|
}, |
|
|
|
|
getCacheOrder(){ |
|
|
|
|
let data = {}; |
|
|
|
|
|
|
|
|
|
log('orderData',data); |
|
|
|
|
orderGet({sign:this.sign}).then(res => { |
|
|
|
|
data = JSON.parse(res.data.data); |
|
|
|
|
this.type = data.type; |
|
|
|
|
this.address = data.address; |
|
|
|
|
this.timeList = data.timeList; |
|
|
|
|
this.petChecked = data.petChecked; |
|
|
|
|
this.$refs.petPage.petCheckList = data.petChecked; |
|
|
|
|
this.addServiceList = data.addServiceList; |
|
|
|
|
this.addServiceChecked = data.addServiceChecked; |
|
|
|
|
this.coupons = data.coupons; |
|
|
|
|
this.add_time = data.add_time; |
|
|
|
|
this.basicServiceList = data.basicServiceList; |
|
|
|
|
this.basicServiceChecked = data.basicServiceChecked; |
|
|
|
|
this.sign = ''; |
|
|
|
|
this.checkOrderData(); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
addTimeConfirm(e){ |
|
|
|
|
this.add_time = e.value[0].value; |
|
|
|
|
}, |
|
|
|
@ -500,6 +561,9 @@
|
|
|
|
|
this.addServiceList[e].checked = !this.addServiceList[e].checked; |
|
|
|
|
}, |
|
|
|
|
orderPay(){ |
|
|
|
|
if(this.isPay){ |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
uni.showLoading('加载中'); |
|
|
|
|
if( |
|
|
|
|
this.address |
|
|
|
@ -517,21 +581,32 @@
|
|
|
|
|
order_type:this.type, |
|
|
|
|
address_id: this.address.id, |
|
|
|
|
do_date: this.timeList.map(res => [res.date,res.time]), |
|
|
|
|
services: this.addServiceChecked.map(res => res.id).join(','), |
|
|
|
|
services: this.addServiceChecked.map(res => { |
|
|
|
|
return { |
|
|
|
|
id:res.id, |
|
|
|
|
number:res.number |
|
|
|
|
} |
|
|
|
|
}), |
|
|
|
|
basic_service:this.basicServiceChecked, |
|
|
|
|
pet_ids: this.petChecked.map(res => res.id).join(','), |
|
|
|
|
store_id:this.addServiceList[0].store_id, |
|
|
|
|
user_coupon_id: coupons || 0 |
|
|
|
|
}).then(res => { |
|
|
|
|
console.log(res) |
|
|
|
|
api.payment(res.data).then(res => { |
|
|
|
|
if(this.price.price>0){ |
|
|
|
|
api.payment(res.data).then(res => { |
|
|
|
|
this.isPay = false; |
|
|
|
|
uni.redirectTo({url:'/pages/Order/done?type=order'}); |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
}).catch(err => { |
|
|
|
|
this.isPay = false; |
|
|
|
|
api.error('支付失败'); |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
}); |
|
|
|
|
}else{ |
|
|
|
|
uni.redirectTo({url:'/pages/Order/done?type=order'}); |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
}).catch(err => { |
|
|
|
|
this.isPay = false; |
|
|
|
|
api.error('支付失败'); |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}else{ |
|
|
|
|
uni.hideLoading(); |
|
|
|
@ -560,19 +635,28 @@
|
|
|
|
|
&&this.petChecked.length>0 |
|
|
|
|
&&this.basicServiceChecked!=='' |
|
|
|
|
){ |
|
|
|
|
console.log(this.basicServiceChecked) |
|
|
|
|
let coupons = this.coupons.map(item => { |
|
|
|
|
return item.id; |
|
|
|
|
}).join(','); |
|
|
|
|
getOrderPrice({ |
|
|
|
|
order_type:this.type, |
|
|
|
|
address_id: this.address.id, |
|
|
|
|
do_date: this.timeList.map(res => [res.date,res.time]), |
|
|
|
|
services: this.addServiceChecked.map(res => res.id).join(','), |
|
|
|
|
services: this.addServiceChecked.map(res => { |
|
|
|
|
return { |
|
|
|
|
id:res.id, |
|
|
|
|
number:res.number |
|
|
|
|
} |
|
|
|
|
}), |
|
|
|
|
basic_service:this.basicServiceChecked, |
|
|
|
|
pet_ids: this.petChecked.map(res => res.id).join(','), |
|
|
|
|
store_id:this.addServiceList[0].store_id, |
|
|
|
|
user_coupon_id:this.coupons.id || 0 |
|
|
|
|
user_coupon_id:coupons || 0 |
|
|
|
|
}).then(res => { |
|
|
|
|
console.log(res) |
|
|
|
|
console.log('res',res) |
|
|
|
|
this.price = res.data; |
|
|
|
|
}).catch(err => { |
|
|
|
|
log('err',err) |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|