index.vue 436 Bytes
Newer Older
zhangsan's avatar
1  
zhangsan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<template>
  <div class="closer" @click="handleClose">
    <img src="@/static/closer.jpg" alt="">
  </div>
</template>

<script setup>
import { useRouter } from 'vue-router'
const router = useRouter()
const handleClose = () => {
  router.push('/user/payUp?amount=1000&paytitle=自主验证费用&paytype=6')
}
</script>

<style scoped>
.closer {
  width: 100%;
  height: 100vh;
  img {
    width: 100%;
    height: 100%;
  }
}
</style>