2023-02-12 21:56:02 +08:00
|
|
|
<template>
|
|
|
|
<div class="app-container">
|
|
|
|
<!-- 支付信息 -->
|
|
|
|
<el-card v-loading="loading">
|
|
|
|
<el-descriptions title="支付信息" :column="3" border>
|
2023-02-13 23:59:03 +08:00
|
|
|
<el-descriptions-item label="支付单号">{{ payOrder.id }}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="商品标题">{{ payOrder.subject }}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="商品内容">{{ payOrder.body }}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="支付金额">¥{{ (payOrder.amount / 100.0).toFixed(2) }}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="创建时间">{{ parseTime(payOrder.createTime) }}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="过期时间">{{ parseTime(payOrder.expireTime) }}</el-descriptions-item>
|
2023-02-12 21:56:02 +08:00
|
|
|
</el-descriptions>
|
|
|
|
</el-card>
|
|
|
|
|
2023-02-15 00:11:34 +08:00
|
|
|
<!-- 支付选择框 -->
|
2023-02-12 21:56:02 +08:00
|
|
|
<el-card style="margin-top: 10px">
|
|
|
|
<!-- 支付宝 -->
|
|
|
|
<el-descriptions title="选择支付宝支付">
|
|
|
|
</el-descriptions>
|
|
|
|
<div class="pay-channel-container">
|
2023-02-15 00:11:34 +08:00
|
|
|
<div class="box" v-for="channel in aliPayChannels" :key="channel.code" @click="submit(channel.code)">
|
2023-02-12 21:56:02 +08:00
|
|
|
<img :src="icons[channel.code]">
|
|
|
|
<div class="title">{{ channel.name }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- 微信支付 -->
|
|
|
|
<el-descriptions title="选择微信支付" style="margin-top: 20px;" />
|
|
|
|
<div class="pay-channel-container">
|
|
|
|
<div class="box" v-for="channel in wxPayChannels" :key="channel.code">
|
|
|
|
<img :src="icons[channel.code]">
|
|
|
|
<div class="title">{{ channel.name }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- 其它支付 -->
|
|
|
|
<el-descriptions title="选择其它支付" style="margin-top: 20px;" />
|
|
|
|
<div class="pay-channel-container">
|
|
|
|
<div class="box" v-for="channel in otherPayChannels" :key="channel.code">
|
|
|
|
<img :src="icons[channel.code]">
|
|
|
|
<div class="title">{{ channel.name }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-card>
|
2023-02-15 00:11:34 +08:00
|
|
|
|
|
|
|
<!-- 支付二维码 -->
|
|
|
|
<el-dialog :title="qrCode.title" :visible.sync="qrCode.visible" width="350px" append-to-body
|
|
|
|
:close-on-press-escape="false">
|
|
|
|
<qrcode-vue :value="qrCode.url" size="310" level="H" />
|
|
|
|
</el-dialog>
|
2023-02-12 21:56:02 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
2023-02-15 00:11:34 +08:00
|
|
|
import QrcodeVue from 'qrcode.vue'
|
2023-02-13 23:59:03 +08:00
|
|
|
import { DICT_TYPE, getDictDatas } from "@/utils/dict";
|
2023-02-15 00:11:34 +08:00
|
|
|
import { getOrder, submitOrder } from '@/api/pay/order';
|
|
|
|
import { PayChannelEnum, PayOrderStatusEnum } from "@/utils/constants";
|
2023-02-12 21:56:02 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "PayOrderSubmit",
|
|
|
|
components: {
|
2023-02-15 00:11:34 +08:00
|
|
|
QrcodeVue,
|
2023-02-12 21:56:02 +08:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
id: undefined, // 请假编号
|
|
|
|
loading: false, // 支付信息的 loading
|
|
|
|
payOrder: {}, // 支付信息
|
|
|
|
aliPayChannels: [], // 阿里支付的渠道
|
|
|
|
wxPayChannels: [], // 微信支付的渠道
|
|
|
|
otherPayChannels: [], // 其它的支付渠道
|
|
|
|
icons: {
|
|
|
|
alipay_qr: require("@/assets/images/pay/icon/alipay_qr.svg"),
|
|
|
|
alipay_app: require("@/assets/images/pay/icon/alipay_app.svg"),
|
|
|
|
alipay_wap: require("@/assets/images/pay/icon/alipay_wap.svg"),
|
|
|
|
alipay_pc: require("@/assets/images/pay/icon/alipay_pc.svg"),
|
|
|
|
wx_app: require("@/assets/images/pay/icon/wx_app.svg"),
|
|
|
|
wx_lite: require("@/assets/images/pay/icon/wx_lite.svg"),
|
|
|
|
wx_pub: require("@/assets/images/pay/icon/wx_pub.svg"),
|
|
|
|
mock: require("@/assets/images/pay/icon/mock.svg"),
|
|
|
|
},
|
2023-02-15 00:11:34 +08:00
|
|
|
qrCode: { // 支付二维码
|
|
|
|
url: '',
|
|
|
|
title: '',
|
|
|
|
visible: false,
|
|
|
|
},
|
|
|
|
interval: undefined, // 定时任务,轮询是否完成支付
|
2023-02-12 21:56:02 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.id = this.$route.query.id;
|
2023-02-13 23:59:03 +08:00
|
|
|
this.getDetail();
|
2023-02-12 21:56:02 +08:00
|
|
|
this.initPayChannels();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
/** 初始化支付渠道 */
|
|
|
|
initPayChannels() {
|
|
|
|
// 微信支付
|
|
|
|
for (const dict of getDictDatas(DICT_TYPE.PAY_CHANNEL_CODE_TYPE)) {
|
|
|
|
const payChannel = {
|
|
|
|
name: dict.label,
|
|
|
|
code: dict.value
|
|
|
|
}
|
|
|
|
if (dict.value.indexOf('wx_') === 0) {
|
|
|
|
this.wxPayChannels.push(payChannel);
|
|
|
|
} else if (dict.value.indexOf('alipay_') === 0) {
|
|
|
|
this.aliPayChannels.push(payChannel);
|
|
|
|
} else {
|
|
|
|
this.otherPayChannels.push(payChannel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-02-15 00:11:34 +08:00
|
|
|
/** 获得支付信息 */
|
2023-02-12 21:56:02 +08:00
|
|
|
getDetail() {
|
2023-02-13 23:59:03 +08:00
|
|
|
// 1.1 未传递订单编号
|
|
|
|
if (!this.id) {
|
|
|
|
this.$message.error('未传递支付单号,无法查看对应的支付信息');
|
2023-02-15 00:11:34 +08:00
|
|
|
this.goBackToList();
|
2023-02-13 23:59:03 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
getOrder(this.id).then(response => {
|
|
|
|
// 1.2 无法查询到支付信息
|
|
|
|
if (!response.data) {
|
|
|
|
this.$message.error('支付订单不存在,请检查!');
|
2023-02-15 00:11:34 +08:00
|
|
|
this.goBackToList();
|
2023-02-13 23:59:03 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// 1.3 订单已支付
|
|
|
|
if (response.data.status !== PayOrderStatusEnum.WAITING.status) {
|
|
|
|
this.$message.error('支付订单不处于待支付状态,请检查!');
|
2023-02-15 00:11:34 +08:00
|
|
|
this.goBackToList();
|
2023-02-13 23:59:03 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2. 可以展示
|
|
|
|
this.payOrder = response.data;
|
2023-02-12 21:56:02 +08:00
|
|
|
});
|
|
|
|
},
|
2023-02-15 00:11:34 +08:00
|
|
|
/** 提交支付 */
|
|
|
|
submit(channelCode) {
|
|
|
|
submitOrder({
|
|
|
|
id: this.id,
|
|
|
|
channelCode: channelCode
|
|
|
|
}).then(response => {
|
|
|
|
// 不同的支付,调用不同的策略
|
|
|
|
if (channelCode === PayChannelEnum.ALIPAY_QR.code) {
|
|
|
|
this.submitAfterAlipayQr(response.data.invokeResponse)
|
|
|
|
}
|
|
|
|
// 打开轮询任务
|
|
|
|
this.createQueryInterval()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
/** 提交支付后(支付宝扫码支付) */
|
|
|
|
submitAfterAlipayQr(invokeResponse) {
|
|
|
|
this.qrCode = {
|
|
|
|
title: '请使用支付宝“扫一扫”扫码支付',
|
|
|
|
url: invokeResponse.qrCode,
|
|
|
|
visible: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/** 轮询查询任务 */
|
|
|
|
createQueryInterval() {
|
|
|
|
this.interval = setInterval(() => {
|
|
|
|
getOrder(this.id).then(response => {
|
|
|
|
// 已支付
|
|
|
|
if (response.data.status === PayOrderStatusEnum.SUCCESS.status) {
|
|
|
|
this.clearQueryInterval();
|
|
|
|
this.$message.success('支付成功!');
|
|
|
|
this.goBackToList();
|
|
|
|
}
|
|
|
|
// 已取消
|
|
|
|
if (response.data.status === PayOrderStatusEnum.CLOSED.status) {
|
|
|
|
this.clearQueryInterval();
|
|
|
|
this.$message.error('支付已关闭!');
|
|
|
|
this.goBackToList();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}, 1000 * 2)
|
|
|
|
},
|
|
|
|
/** 清空查询任务 */
|
|
|
|
clearQueryInterval() {
|
|
|
|
// 清空各种弹窗
|
|
|
|
this.qrCode = {
|
|
|
|
title: '',
|
|
|
|
url: '',
|
|
|
|
visible: false
|
|
|
|
}
|
|
|
|
// 清空任务
|
|
|
|
clearInterval(this.interval)
|
|
|
|
this.interval = undefined
|
|
|
|
},
|
|
|
|
/** 回到列表 **/
|
|
|
|
goBackToList() {
|
|
|
|
this.$tab.closePage();
|
|
|
|
this.$router.go(-1);
|
|
|
|
}
|
2023-02-12 21:56:02 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.pay-channel-container {
|
|
|
|
display: flex;
|
|
|
|
margin-top: -10px;
|
|
|
|
.box {
|
|
|
|
width: 130px;
|
|
|
|
border: 1px solid #e6ebf5;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
margin-right: 10px;
|
|
|
|
img {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
.title {
|
|
|
|
padding-top: 5px
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|