Compare commits

..

No commits in common. "d0d9fd0005ecd6dd98256453b50ffafd139ad1ff" and "f883ff809a4f6ef7e9d6852850450338117158f7" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View File

@ -19,7 +19,7 @@ const { checkoutSessionUrl, qrUid, qrData, codePKey, codePayUid } =
codeAuthStore();
const payStatus = ref(0);
const state = reactive({
pageRequest: true,
pageRequest: false,
});
definePageMeta({
i18n: "payment.title",
@ -73,7 +73,6 @@ const abroadPay=async ()=>{
QrUid:route.query.qrUid
});
if(res.status===0){
codePKey.value = res.data.checkoutSessionUrl;
codePayUid.value = res.data.payUid;
window.location.href = res.data.checkoutSessionUrl;

View File

@ -17,8 +17,8 @@ const resData = ref({});
const statusLabel = {
1: t("payment.text3"),
2: t("payment.text2"),
1: t("payment.text2"),
2: t("payment.text3"),
3: t("payment.text4"),
4: t("payment.text5"),
};