hjyd的手机端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
831 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="sub_navigation_container">
  3. <div class="back_icon"></div>
  4. <p class="title">{{ title }}</p>
  5. <p class="menu"></p>
  6. </div>
  7. </template>
  8. <script setup>
  9. const props = defineProps({
  10. title: {
  11. type: String,
  12. },
  13. })
  14. </script>
  15. <style lang="scss" scoped>
  16. .sub_navigation_container {
  17. height: $sub-header-height;
  18. display: flex;
  19. align-items: center;
  20. justify-content: space-between;
  21. padding: 16px 18px;
  22. box-sizing: border-box;
  23. background: #efefef;
  24. z-index: 222;
  25. position: fixed;
  26. top: 0;
  27. left: 0;
  28. right: 0;
  29. .back_icon {
  30. width: 8px;
  31. height: 15px;
  32. background: #000;
  33. }
  34. .title {
  35. font-size: 10px;
  36. font-family: Alibaba PuHuiTi;
  37. font-weight: 500;
  38. color: #262626;
  39. }
  40. .menu {
  41. width: 18px;
  42. height: 12px;
  43. background: #262626;
  44. }
  45. }
  46. </style>