Compare commits

..

No commits in common. "d8f60b1d888ffd55829f2a69b1eff70e80de7543" and "8de0b2bfb4b79589eda8ebcd91e119106ffbd717" 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"),
};