comHead.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <template>
  2. <div class="dashboard-head flex">
  3. <!-- <div class="dashboard-head-title">{{title}}</div> -->
  4. <div class="dashboard-head-tabs flex-wrap">
  5. <div
  6. class="dashboard-head-tabs-list"
  7. :class="tabsIndex == index ? 'active' : ''"
  8. @click="tabClick(item, index)"
  9. v-for="(item, index) in tabs"
  10. :key="index"
  11. >
  12. {{ item.label }}
  13. </div>
  14. </div>
  15. <!-- <div class="dashboard-head-zw"></div> -->
  16. </div>
  17. </template>
  18. <script setup lang="ts">
  19. const router = useRouter();
  20. const props = defineProps({
  21. tabsIndex: {
  22. type: Number,
  23. default: 0,
  24. },
  25. });
  26. const tabs = [
  27. {
  28. id: 1,
  29. label: "国内出港",
  30. value: "one",
  31. },
  32. {
  33. id: 2,
  34. label: "国内进港",
  35. value: "two",
  36. },
  37. {
  38. id: 3,
  39. label: "国际出港",
  40. value: "three",
  41. },
  42. {
  43. id: 4,
  44. label: "国际进港",
  45. value: "four",
  46. },
  47. ];
  48. const { tabsIndex } = props;
  49. const tabClick = (item, index) => {
  50. if (index == 0) {
  51. router.push({
  52. path: "../homeOut",
  53. });
  54. }
  55. if (index == 1) {
  56. router.push({
  57. path: "../homein",
  58. });
  59. }
  60. if (index == 2) {
  61. router.push({
  62. path: "../indexOut",
  63. });
  64. }
  65. if (index == 3) {
  66. router.push({
  67. path: "../indexIn",
  68. });
  69. }
  70. };
  71. </script>
  72. <style lang="scss" scoped>
  73. .dashboard-head {
  74. &-tabs {
  75. font-size: 16px;
  76. font-family: Microsoft YaHei;
  77. font-weight: 400;
  78. color: #ffffff;
  79. &-list {
  80. margin-right: 60px;
  81. cursor: pointer;
  82. position: relative;
  83. &:last-child {
  84. margin-right: 0;
  85. }
  86. }
  87. .active {
  88. color: #51dee9;
  89. &::after {
  90. content: "";
  91. position: absolute;
  92. bottom: 0;
  93. width: 80%;
  94. left: 10%;
  95. height: 2px;
  96. background: #51dee9;
  97. }
  98. }
  99. }
  100. }
  101. </style>