123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <div class="navigation yes-events">
- <img class="tabs" src="@/assets/images/home/tabs.png" alt="">
- <!-- <img class="tool" src="@/assets/images/home/tool.png" alt=""> -->
- <!-- <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;
- left: calc(50% - 476px);
- display: flex;
- align-items: center;
- flex-direction: column;
- .tabs{
- width: 952px;
- height: 43px;
- margin-bottom: 10px;
- }
- .tool{
- width: 878px;
- height: 161px;
- }
- .btn{
- width: 80px;
- height: 30px;
- text-align: center;
- line-height: 28px;
- border-radius: 5px;
- cursor: pointer;
- background: rgba(255,255,255,0.5);
- }
- }
- </style>
|