VisualizationBottom.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <template>
  2. <div id="visualizationBottom">
  3. <div class="middle-content">
  4. <div class="single" v-for="item in bottomList" :class="[item.chosen?'single_chosen':'']" :key="item.id">
  5. <img v-if="item.chosen" :src="imgUrl(item)" alt="">
  6. <img v-else :src="imgUrl(item)" alt="">
  7. <span @click="changePath(item)">{{item.label}}</span>
  8. </div>
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. import {ref} from "vue";
  14. import router from "@/router/index.js";
  15. export default {
  16. name: "VisualizationBottom",
  17. setup(){
  18. let bottomList = ref([
  19. {
  20. id:"01",
  21. name:"mainPage",
  22. chosen:false,
  23. label:"过程库"
  24. },
  25. {
  26. id:"02",
  27. name:"houseBuilding",
  28. chosen:true,
  29. label:"现势库"
  30. },
  31. {
  32. id:"03",
  33. name:"municipalFacilities",
  34. chosen:false,
  35. label:"历史库"
  36. }
  37. ])
  38. function changePath(item){
  39. bottomList.value.forEach((i)=>{
  40. if(i.name == item.name){
  41. i.chosen = true;
  42. }else{
  43. i.chosen = false;
  44. }
  45. })
  46. }
  47. function imgUrl(item){
  48. if(item.chosen){
  49. return new URL(`../../assets/imgs/${item.name}2.png`, import.meta.url).href
  50. }else{
  51. return new URL(`../../assets/imgs/${item.name}1.png`, import.meta.url).href
  52. }
  53. }
  54. return {
  55. changePath,
  56. bottomList,
  57. imgUrl
  58. }
  59. }
  60. }
  61. </script>
  62. <style scoped lang="scss">
  63. #visualizationBottom{
  64. width: 1400px;
  65. height: 67px;
  66. position: absolute;
  67. bottom: 0;
  68. left: 286px;
  69. z-index: 2;
  70. background: url("../../assets/imgs/dbbj.png") no-repeat;
  71. background-size: 100% 100%;
  72. display: flex;
  73. justify-content: center;
  74. align-items: center;
  75. .middle-content{
  76. width: 700px;
  77. height: 100%;
  78. display: flex;
  79. justify-content: center;
  80. align-items: center;
  81. .single{
  82. width: 163px;
  83. height: 59px;
  84. display: flex;
  85. justify-content: center;
  86. align-items: center;
  87. span{
  88. cursor: pointer;
  89. font-family: YouSheBiaoTiHei;
  90. font-weight: 400;
  91. font-size: 20px;
  92. color: #BBCDE6;
  93. opacity: 0.7;
  94. }
  95. }
  96. .single_chosen{
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. background-size: cover;
  101. img{
  102. padding-top: 10px;
  103. }
  104. span{
  105. color: #BBCDE6;
  106. opacity: 1;
  107. background: linear-gradient(0deg, #ACE5FF 0%, #FFFFFF 100%);
  108. -webkit-background-clip: text;
  109. -webkit-text-fill-color: transparent;
  110. }
  111. }
  112. }
  113. }
  114. </style>