back.uvue 545 B

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