123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <div class="windDevice">
- <div class="title-top" @click="getDetail">通风设施远程控制</div>
- <div class="toggle-search">
- <i class="icon-search">
- <SvgIcon class="icon" size="14" name="toggle" />
- </i>
- <a-select
- v-model:value="searchValue"
- style="width: 180px; margin-right: 10px"
- :options="options1"
- aria-placeholder="请选择"
- @change="changeSelect"
- />
- </div>
- <!-- <img class="contents" :src="imgSrc" alt="" /> -->
- </div>
- </template>
- <script lang="ts" setup>
- import { ref, reactive } from 'vue';
- import { SvgIcon } from '/@/components/Icon';
-
- let searchValue = ref('风门');
- const options1 = reactive<any>([
- {
- value: '风门',
- label: '风门',
- },
- {
- value: '风窗',
- label: '风窗',
- },
- ]);
-
- function getDetail() {
- console.log('跳转详情');
- }
-
-
- function changeSelect(val) {
- switch (val) {
- case '风门':
-
- break;
- case '风窗':
-
- break;
- }
- }
- </script>
- <style lang="less" scoped>
- @font-face {
- font-family: 'douyuFont';
- src: url('../../../../../assets/font/douyuFont.otf');
- }
- .windDevice {
- width: 100%;
- height: 100%;
- position: relative;
- .title-top {
- position: absolute;
- top: 9px;
- left: 46px;
- color: #fff;
- font-size: 16px;
- font-family: 'douyuFont';
- cursor: pointer;
- &:hover{
- color: #66ffff;
- }
- }
- .toggle-search {
- position: absolute;
- left: 9px;
- top: 37px;
- display: flex;
- .icon-search {
- position: absolute;
- top: 50%;
- left: 5px;
- transform: translate(0%, -50%);
- }
- }
-
-
-
-
-
-
-
-
-
-
-
- }
- :deep .zxm-select-selector {
- width: 100%;
- height: 30px !important;
- padding: 0 11px 0px 25px !important;
- background-color: rgba(8, 148, 255, 0.3) !important;
- border: 1px solid #1d80da !important;
- }
- :deep .zxm-select-selection-item {
- color: #fff !important;
- line-height: 28px !important;
- }
- :deep .zxm-select-arrow {
- color: #fff !important;
- }
- </style>
|