This commit is contained in:
X1627315083
2025-09-01 14:03:30 +08:00
parent c387a71ba8
commit 89639aaec9
49 changed files with 819 additions and 232 deletions

View File

@@ -154,7 +154,7 @@
</template>
<script lang="ts">
import { defineComponent, ref, reactive, toRefs, onMounted } from "vue";
import { defineComponent, ref, reactive, toRefs, onMounted, onBeforeUnmount } from "vue";
import { Https } from "@/tool/https";
import { isEmail } from "@/tool/util";
import { message } from "ant-design-vue";
@@ -195,6 +195,7 @@ export default defineComponent({
};
const cancelDsign = () => {
payMethod.payMethodModel = false;
store.dispatch('getLangType')
};
const payAffirm = () => {
if (!payMethodData.clause) {
@@ -286,6 +287,7 @@ export default defineComponent({
setPaidBack();
emit("completePayment");
};
return {
store,
...toRefs(payMethod),