1234567891011121314151617181920212223242526272829 |
- <template>
- <!-- 公共组件 -->
- <div class="info">
- <v-head :title="'Withdraw'" :show_more="true"></v-head>
- <popup-withdraw style="height: calc(100% - 48px);" @back="back"></popup-withdraw>
- </div>
- </template>
- <script setup>
- import VHead from '@/view/popup/components/head.vue'
- import PopupWithdraw from "@/view/components/popup-withdraw.vue";
- import { useRouter } from "vue-router";
- let router = useRouter()
- const back = () => {
- router.replace('/')
- }
- </script>
- <style lang='scss' scoped>
- .info {
- height: 100%;
- overflow: hidden;
- }
- </style>
|