205 lines
7.0 KiB
Vue
205 lines
7.0 KiB
Vue
<template>
|
||
<view>
|
||
<status-container titlet="确认订单" returnc="#FFFFFF">
|
||
<view slot="content" style="margin-top: -20rpx;" v-if="loading">
|
||
<view v-if="orderInfo.list[0].spu_type!='coupon'" @tap="$toolAll.tools.goPage(`/pagesA/my-address/my-address?ifChoose=1`)" class="bacf disjbac fon24 pad-sx20 pad-zy30 boxshowb">
|
||
<view class="fon20 line-h40" v-if="addressInfo">
|
||
<view class="" style="color: #676767;">{{addressInfo.province_str}}{{addressInfo.city_str}}{{addressInfo.county_str}}</view>
|
||
<view class="fon26">{{addressInfo.address}}</view>
|
||
<view class="">{{addressInfo.name}} {{$toolAll.tools.hideMPhone(addressInfo.phone)}}</view>
|
||
</view>
|
||
<view class="fon20 line-h40" v-else>请添加收货地址</view>
|
||
<view class="icon icon-next fon28" style="color: #777777;"></view>
|
||
</view>
|
||
<view class="bacf mar-s30 pad30 fon24 boxshowb">
|
||
<view class="disac bbot pad-x30" v-for="(item,index) in orderInfo.list" :key="index">
|
||
<image :src="item.sku_cover" mode="aspectFill" class="flexs mar-y20" style="width: 228rpx;height: 160rpx;" lazy-load></image>
|
||
<view class="disjb fc pad-sx10 fon24 width100" style="height: 160rpx;">
|
||
<view class="col26 clips2">{{item.goods_name}}</view>
|
||
<view class="col26 width100">
|
||
<view class="mar-x10">{{item.sku_name}}</view>
|
||
<view class=" disjbac">
|
||
<view class="">¥{{item.price}}</view>
|
||
<view>X <span class="mar-z6">{{item.num}}</span></view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="bbot pad-sx30">
|
||
<view class="disjbac">
|
||
<view class="">商品金额</view>
|
||
<view class="pad-y30">¥{{$toolAll.tools.addXiaoShu(orderInfo.original_total*1)}}</view>
|
||
</view>
|
||
<!-- <view class="disjbac mar-s30">
|
||
<view class="">优惠券抵扣</view>
|
||
<view class="disjbac col-e42417">-¥{{couponInfo.coupon_price}} <view class="icon icon-next fon28 mar-z10" style="color: #777777;"></view></view>
|
||
</view> -->
|
||
<view class="disjbac mar-s30">
|
||
<view class="">积分抵扣</view>
|
||
<view class="disac col-e42417">-¥{{scorePrice}} <view class="icon icon-next fon28 mar-z10" style="color: #777777;"></view></view>
|
||
</view>
|
||
</view>
|
||
<view class="disje pad-s30 pad-x10 pad-y30">
|
||
合计:¥{{realityPrice}}
|
||
</view>
|
||
</view>
|
||
<!-- 立即购买 -->
|
||
<view class="posixzy bacf pad-sx20 disjbac pad-zy30 boxshowt">
|
||
<view class="fon24">合计:<span class="col-e42417 fon34 bold">¥{{realityPrice}}</span></view>
|
||
<view @tap="goPay" class="fon24 colf radius32 disjcac" style="background-color: #f37617;width: 184rpx;height: 64rpx;">去支付</view>
|
||
</view>
|
||
</view>
|
||
</status-container>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
// 底部组件
|
||
import footTab from '@/components/foot-tabs/foot-tab.vue';
|
||
export default {
|
||
components:{'foot-tab' :footTab},
|
||
data() {
|
||
return {
|
||
addressInfo:'',
|
||
orderInfo:'',
|
||
flag:true,
|
||
// couponInfo:{
|
||
// coupon_id:'',//优惠券ID
|
||
// coupon_price:0//优惠券抵扣金额
|
||
// },
|
||
score:0,
|
||
scorePrice:0,
|
||
loading:false
|
||
}
|
||
},
|
||
onShow() {
|
||
this.addressInfo = uni.getStorageSync('addressInfo');
|
||
},
|
||
onLoad() {
|
||
this.getAddress();
|
||
// this.scoreToPrice();
|
||
},
|
||
computed:{
|
||
realityPrice(){
|
||
let newPrice = 0;
|
||
if(this.orderInfo){
|
||
this.loading = true;
|
||
this.orderInfo.list.forEach(item=>{
|
||
let tempprice = this.$toolAll.tools.operationEv(item.price,item.num,'*',2)
|
||
newPrice = this.$toolAll.tools.operationEv(tempprice,newPrice,'+',2);
|
||
})
|
||
}
|
||
// 商品金额减优惠券抵扣
|
||
// newPrice = this.$toolAll.tools.operationEv(newPrice,this.couponInfo.coupon_price,'-',2);
|
||
// 商品金额减积分抵扣
|
||
newPrice = this.$toolAll.tools.operationEv(newPrice,this.scorePrice,'-',2);
|
||
return newPrice<0?0:newPrice;
|
||
}
|
||
},
|
||
methods: {
|
||
// 积分转金额
|
||
// scoreToPrice(){
|
||
// this.$requst.post('/api/index/score2price',{score:this.score}).then(res=>{
|
||
// if(res.code==0){
|
||
// this.scorePrice = res.data.price;
|
||
// }
|
||
// })
|
||
// },
|
||
// 收货地址查询
|
||
getAddress(){
|
||
this.$requst.get('/api/user/address').then(res=>{
|
||
if(res.code==0){
|
||
if(res.data.length){
|
||
res.data.forEach(item=>{
|
||
if(item.is_default){
|
||
this.addressInfo = item;
|
||
} else {
|
||
this.addressInfo = res.data[0];
|
||
}
|
||
})
|
||
}
|
||
uni.setStorageSync('addressInfo',this.addressInfo);
|
||
this.orderInfo = uni.getStorageSync('orderInfo');
|
||
this.score = this.orderInfo.score_use*1;
|
||
this.scorePrice = this.orderInfo.score_deduct_price*1;
|
||
}
|
||
})
|
||
},
|
||
// 去支付
|
||
goPay(){
|
||
if(this.flag){
|
||
this.flag = false;
|
||
if(this.addressInfo || this.orderInfo.list[0].spu_type=='coupon'){
|
||
this.$toolAll.tools.showToast('正在调起支付...');
|
||
let params = {
|
||
sku_list:uni.getStorageSync('skuList'),
|
||
total:this.realityPrice,//实际付款金额 即:使用优惠券、积分抵扣等所有优惠后的金额(需加上运费)
|
||
express_code:'',
|
||
freight:0,//运费
|
||
// ...this.couponInfo,
|
||
address_id:this.addressInfo.id,//地址ID
|
||
type:'spu',//订单类型 spu=商品 course=课程
|
||
score:this.score,//使用积分
|
||
score_deduct_price:this.scorePrice//积分抵扣的金额
|
||
}
|
||
this.$requst.post('/api/order/create',params).then(res=>{
|
||
if(res.code==0){
|
||
let info = res.data;
|
||
if(info.status!='completed' && info.status!='paid'){
|
||
uni.requestPayment({
|
||
provider: 'wxpay',
|
||
appId:info.payment_params.appId,//appId
|
||
timeStamp: info.payment_params.timeStamp,//时间戳
|
||
nonceStr: info.payment_params.nonceStr,//随机字符串
|
||
package: info.payment_params.package,//package
|
||
signType: info.payment_params.signType,//MD5
|
||
paySign: info.payment_params.sign,//签名
|
||
success:(result)=> {
|
||
this.implementEv(info.coding);
|
||
},
|
||
fail:()=> {
|
||
this.$toolAll.tools.showToast('支付已取消o(╥﹏╥)o');
|
||
},
|
||
complete:()=> {
|
||
this.flag = true;
|
||
}
|
||
});
|
||
} else {
|
||
this.implementEv(info.coding);
|
||
}
|
||
} else {
|
||
this.flag = true;
|
||
}
|
||
}).catch(err=>{
|
||
this.flag = true;
|
||
})
|
||
} else {
|
||
this.flag = true;
|
||
this.$toolAll.tools.showToast('请添加收货地址');
|
||
setTimeout(()=>{
|
||
uni.navigateTo({
|
||
url:'/pagesA/my-address/my-address?ifChoose=1'
|
||
})
|
||
},1000)
|
||
}
|
||
}
|
||
},
|
||
// 支付成功接口
|
||
implementEv(coding){
|
||
this.$requst.post('/api/order/paid',{order_coding:coding}).then(res=>{
|
||
if(res.code==0){
|
||
this.$toolAll.tools.showToast('支付成功(*^▽^*)');
|
||
setTimeout(()=>{
|
||
uni.navigateTo({
|
||
url:'/pagesA/my-order/my-order'
|
||
})
|
||
},1000)
|
||
} else this.$toolAll.tools.showToast(res.msg);
|
||
})
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style></style>
|