新增支付结果页

This commit is contained in:
hzj 2025-09-05 19:07:20 +08:00
parent 10aa3eb948
commit e95c58ae59

14
src/views/payResult.vue Normal file
View File

@ -0,0 +1,14 @@
<template>
<div></div>
</template>
<script setup>
import { showError, showWarning, showInfo, showSuccess } from "@/utils/toast.js";
import { onMounted } from "vue";
onMounted(() => {
showSuccess("");
});
</script>
<style lang="scss" scoped></style>