<template>
|
|
|
|
<view>
|
|
<uv-popup ref="popup" mode="bottom" bgColor="none" >
|
|
<view class="popup__view">
|
|
<view class="flex header">
|
|
<view class="title">支付订单</view>
|
|
<button class="btn" @click="close">关闭</button>
|
|
</view>
|
|
<view class="main">
|
|
<view class="section flex flex-column info">
|
|
<view class="info-title" v-if="orderData.title">{{ orderData.title }}</view>
|
|
<view class="flex info-amount">¥<text class="highlight">{{ orderData.orderAmount }}</text></view>
|
|
</view>
|
|
<view class="section flex payment">
|
|
<view class="flex">
|
|
<image class="payment-icon" src="@/pages_order/static/order/icon-wx.png" mode="widthFix"></image>
|
|
<view class="payment-text">微信</view>
|
|
</view>
|
|
<view>
|
|
<uv-radio-group
|
|
:value="1"
|
|
shape="circle"
|
|
size="36rpx"
|
|
iconSize="36rpx"
|
|
activeColor="#7451DE"
|
|
>
|
|
<uv-radio :name="1"></uv-radio>
|
|
</uv-radio-group>
|
|
</view>
|
|
</view>
|
|
<view class="section agreement">
|
|
<uv-checkbox-group
|
|
v-model="checkboxValue"
|
|
shape="circle"
|
|
>
|
|
<uv-checkbox
|
|
size="36rpx"
|
|
icon-size="36rpx"
|
|
activeColor="#7451DE"
|
|
:name="1"
|
|
></uv-checkbox>
|
|
</uv-checkbox-group>
|
|
<view class="desc">
|
|
我已阅读并同意
|
|
<text class="highlight" @click="$refs.modal.open('payment_user_agreement', '应用内支付用户协议')">《应用内支付用户协议》</text>
|
|
<text class="highlight" @click="$refs.modal.open('statement_on_payment_and_privacy', '支付与隐私的声明')">《支付与隐私的声明》</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="flex footer">
|
|
<button class="flex btn btn-cancel" @click="onCancel">暂不支付</button>
|
|
<button class="flex btn btn-pay" @click="onPay">支付</button>
|
|
</view>
|
|
</view>
|
|
</uv-popup>
|
|
|
|
<agreementModal ref="modal" @confirm="onConfirmAgreement"></agreementModal>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
orderData: {},
|
|
checkboxValue: [],
|
|
}
|
|
},
|
|
methods: {
|
|
async fetchDelete(ids) {
|
|
try {
|
|
|
|
await this.$fetch('deleteCartBatch', { ids })
|
|
|
|
} catch (err) {
|
|
|
|
}
|
|
},
|
|
async open(data) {
|
|
console.log('payPopup', data)
|
|
try {
|
|
const {
|
|
id,
|
|
title,
|
|
list,
|
|
addressId,
|
|
orderAmount,
|
|
} = data || {}
|
|
|
|
let wxPayParams
|
|
|
|
if (id) {
|
|
|
|
wxPayParams = await this.$fetch('payOrder', { id })
|
|
|
|
} else {
|
|
|
|
console.log('list', list)
|
|
|
|
let _list = list.map(item => ({ productId: item.id, specId: item.specId, num: 1, }))
|
|
|
|
console.log('_list', _list)
|
|
|
|
// todo: check is the time to create order?
|
|
wxPayParams = await this.$fetch('createOrder', { list: JSON.stringify(_list), addressId })
|
|
|
|
if (list[0].cartId) {
|
|
let cartIds = list.map(item => item.cartId)
|
|
|
|
this.fetchDelete(cartIds)
|
|
}
|
|
|
|
|
|
}
|
|
|
|
this.orderData = {
|
|
title,
|
|
orderAmount,
|
|
wxPayParams,
|
|
}
|
|
|
|
console.log('orderData', this.orderData)
|
|
|
|
this.$refs.popup.open()
|
|
|
|
} catch (err) {
|
|
|
|
}
|
|
},
|
|
close() {
|
|
this.$refs.popup.close()
|
|
},
|
|
onCancel() {
|
|
|
|
this.close()
|
|
|
|
this.$emit('payCancel')
|
|
},
|
|
onConfirmAgreement(confirm) {
|
|
if (confirm) {
|
|
this.checkboxValue = [1]
|
|
} else {
|
|
this.checkboxValue = []
|
|
}
|
|
},
|
|
async onPay() {
|
|
if(!this.checkboxValue.length){
|
|
return uni.showToast({
|
|
title: '请先同意《应用内支付用户协议》《支付与隐私的声明》',
|
|
icon:'none'
|
|
})
|
|
}
|
|
|
|
await uni.requestPaymentWxPay({ result: this.orderData.wxPayParams })
|
|
|
|
uni.showToast({
|
|
title: '支付成功',
|
|
icon: 'none'
|
|
})
|
|
|
|
this.close()
|
|
|
|
this.$emit('paySuccess')
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.popup__view {
|
|
width: 100vw;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
background: #FFFFFF;
|
|
border-top-left-radius: 32rpx;
|
|
border-top-right-radius: 32rpx;
|
|
}
|
|
|
|
.header {
|
|
position: relative;
|
|
width: 100%;
|
|
padding: 24rpx 0;
|
|
box-sizing: border-box;
|
|
border-bottom: 2rpx solid #EEEEEE;
|
|
|
|
.title {
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
font-size: 34rpx;
|
|
line-height: 1.4;
|
|
color: #181818;
|
|
}
|
|
|
|
.btn {
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
font-size: 32rpx;
|
|
line-height: 1.4;
|
|
color: #8B8B8B;
|
|
position: absolute;
|
|
top: 26rpx;
|
|
left: 40rpx;
|
|
}
|
|
|
|
}
|
|
|
|
.main {
|
|
padding: 64rpx 40rpx;
|
|
}
|
|
|
|
.section {
|
|
margin-top: 24rpx;
|
|
}
|
|
|
|
.info {
|
|
row-gap: 8rpx;
|
|
|
|
&-title {
|
|
font-family: PingFang SC;
|
|
font-weight: 400;
|
|
font-size: 28rpx;
|
|
line-height: 1.4;
|
|
color: #000000;
|
|
}
|
|
|
|
&-amount {
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
font-size: 24rpx;
|
|
line-height: 1.4;
|
|
color: #7451DE;
|
|
|
|
.highlight {
|
|
font-size: 64rpx;
|
|
margin-left: 8rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
.payment {
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 24rpx 32rpx;
|
|
background: #FAFAFF;
|
|
box-shadow: -4rpx -4rpx 20rpx 0 #FFFFFFC4,
|
|
4rpx 4rpx 20rpx 0 #AAAACC1F,
|
|
2rpx 2rpx 4rpx 0 #AAAACC40,
|
|
-2rpx -2rpx 4rpx 0 #FFFFFF;
|
|
border-radius: 32rpx;
|
|
|
|
&-icon {
|
|
width: 56rpx;
|
|
height: auto;
|
|
}
|
|
&-text {
|
|
margin-left: 16rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 400;
|
|
font-size: 28rpx;
|
|
line-height: 1.5;
|
|
color: #252545;
|
|
}
|
|
}
|
|
|
|
.agreement {
|
|
margin-top: 24rpx;
|
|
display: flex;
|
|
|
|
.desc {
|
|
font-family: PingFang SC;
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
line-height: 1.4;
|
|
color: #8B8B8B;
|
|
}
|
|
|
|
.highlight {
|
|
color: $uni-color;
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
width: 100%;
|
|
padding: 32rpx 40rpx;
|
|
box-sizing: border-box;
|
|
border-top: 2rpx solid #F1F1F1;
|
|
column-gap: 32rpx;
|
|
|
|
.btn {
|
|
flex: 1;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
font-size: 36rpx;
|
|
line-height: 1.4;
|
|
border-radius: 41rpx;
|
|
|
|
&-cancel {
|
|
padding: 14rpx 0;
|
|
color: #252545;
|
|
border: 2rpx solid #252545;
|
|
}
|
|
|
|
&-pay {
|
|
padding: 16rpx 0;
|
|
color: #FFFFFF;
|
|
background-image: linear-gradient(to right, #4B348F, #845CFA);
|
|
}
|
|
}
|
|
}
|
|
|
|
</style>
|