mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-19 09:46:39 +08:00
19 lines
311 B
Vue
19 lines
311 B
Vue
<template>
|
|
<div>
|
|
支付回调
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {useRouter} from "vue-router";
|
|
import {isMobile} from "@/utils/libs";
|
|
|
|
const router = useRouter()
|
|
console.log(router.currentRoute.value.query)
|
|
if (isMobile()) {
|
|
router.push('/mobile/profile')
|
|
} else {
|
|
window.close()
|
|
}
|
|
</script>
|