12345678910111213141516171819202122232425262728293031 |
- <template>
- <div class="navigation yes-events">
- <div class="btn" @click="toPage">农场确权</div>
- </div>
- </template>
- <script setup>
- import { useRouter } from "vue-router";
- const router = useRouter();
- const toPage = () =>{
- router.push('/authentic')
- }
- </script>
- <style lang="scss" scoped>
- .navigation{
- position: fixed;
- top: 34px;
- right: 25vw;
- .btn{
- width: 80px;
- height: 30px;
- text-align: center;
- line-height: 28px;
- border-radius: 5px;
- cursor: pointer;
- background: rgba(255,255,255,0.5);
- }
- }
- </style>
|