paypal.vue 586 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <!-- 公共组件 -->
  3. <div class="info">
  4. <v-head :title="'Withdraw'" :show_more="true"></v-head>
  5. <popup-withdraw style="height: calc(100% - 48px);" @back="back"></popup-withdraw>
  6. </div>
  7. </template>
  8. <script setup>
  9. import VHead from '@/view/popup/components/head.vue'
  10. import PopupWithdraw from "@/view/components/popup-withdraw.vue";
  11. import { useRouter } from "vue-router";
  12. let router = useRouter()
  13. const back = () => {
  14. router.replace('/')
  15. }
  16. </script>
  17. <style lang='scss' scoped>
  18. .info {
  19. height: 100%;
  20. overflow: hidden;
  21. }
  22. </style>