| 123456789101112131415161718192021 |
- <script setup lang='ts'>
- import { router } from "@/.cool";
- </script>
- <template>
- <view class="back" @click="router.back()">
- <cl-image src="https://oss.xiaoxiongcode.com/static/home/back.png" height="100%" mode="heightFix" />
- </view>
- </template>
- <style lang="scss" scoped>
- .back {
- @apply fixed top-5 left-0 w-[60px] h-[40px] z-10 p-[5px] pr-[10px];
- background: #D0F1FF;
- border-radius: 0px 25px 23px 0px;
- border: 1px solid #1D4BD9;
- border-left: none;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- </style>
|