wind-device.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <div class="windDevice">
  3. <div class="title-top" @click="getDetail">通风设施远程控制</div>
  4. <div class="toggle-search">
  5. <i class="icon-search">
  6. <SvgIcon class="icon" size="14" name="toggle" />
  7. </i>
  8. <a-select
  9. v-model:value="searchValue"
  10. style="width: 180px; margin-right: 10px"
  11. :options="options1"
  12. aria-placeholder="请选择"
  13. @change="changeSelect"
  14. />
  15. </div>
  16. <!-- <img class="contents" :src="imgSrc" alt="" /> -->
  17. </div>
  18. </template>
  19. <script lang="ts" setup>
  20. import { ref, reactive } from 'vue';
  21. import { SvgIcon } from '/@/components/Icon';
  22. // import { getAssetURL } from '/@/utils/ui';
  23. let searchValue = ref('风门');
  24. const options1 = reactive<any>([
  25. {
  26. value: '风门',
  27. label: '风门',
  28. },
  29. {
  30. value: '风窗',
  31. label: '风窗',
  32. },
  33. ]);
  34. //跳转详情
  35. function getDetail() {
  36. console.log('跳转详情');
  37. }
  38. // let imgSrc = ref(getAssetURL('home-container/wind-door.gif'));
  39. //选项切换
  40. function changeSelect(val) {
  41. switch (val) {
  42. case '风门':
  43. // imgSrc.value = getAssetURL('home-container/wind-door.gif');
  44. break;
  45. case '风窗':
  46. break;
  47. }
  48. }
  49. </script>
  50. <style lang="less" scoped>
  51. @font-face {
  52. font-family: 'douyuFont';
  53. src: url('../../../../../assets/font/douyuFont.otf');
  54. }
  55. .windDevice {
  56. width: 100%;
  57. height: 100%;
  58. position: relative;
  59. .title-top {
  60. position: absolute;
  61. top: 9px;
  62. left: 46px;
  63. color: #fff;
  64. font-size: 16px;
  65. font-family: 'douyuFont';
  66. cursor: pointer;
  67. &:hover{
  68. color: #66ffff;
  69. }
  70. }
  71. .toggle-search {
  72. position: absolute;
  73. left: 9px;
  74. top: 37px;
  75. display: flex;
  76. .icon-search {
  77. position: absolute;
  78. top: 50%;
  79. left: 5px;
  80. transform: translate(0%, -50%);
  81. }
  82. }
  83. // .contents {
  84. // display: inline-block;
  85. // position: absolute;
  86. // top: 66px;
  87. // left: 50%;
  88. // transform: translate(-50%, 0);
  89. // // width: 100%;
  90. // height: calc(100% - 66px);
  91. // padding-bottom: 10px;
  92. // box-sizing: border-box;
  93. // }
  94. }
  95. :deep .zxm-select-selector {
  96. width: 100%;
  97. height: 30px !important;
  98. padding: 0 11px 0px 25px !important;
  99. background-color: rgba(8, 148, 255, 0.3) !important;
  100. border: 1px solid #1d80da !important;
  101. }
  102. :deep .zxm-select-selection-item {
  103. color: #fff !important;
  104. line-height: 28px !important;
  105. }
  106. :deep .zxm-select-arrow {
  107. color: #fff !important;
  108. }
  109. </style>