| | |
| | | <script setup> |
| | | import { ArrowDown, Search } from '@element-plus/icons-vue'; |
| | | |
| | | const input3 = ref(''); |
| | | const select = ref(''); |
| | | |
| | | const value = ref('Option1'); |
| | | const value2 = ref('Optio44n1'); |
| | | |
| | | const options = [ |
| | | { |
| | |
| | | { |
| | | value: 'Optio44n1', |
| | | label: '事件', |
| | | }, |
| | | ]; |
| | | |
| | | const options1 = [ |
| | | { |
| | | value: 'Option1', |
| | | label: '南昌市', |
| | | }, |
| | | { |
| | | value: 'Optio44n1', |
| | | label: '抚州市', |
| | | }, |
| | | ]; |
| | | </script> |
| | |
| | | </div> |
| | | <div class="searchBtn"></div> |
| | | <div class="region"> |
| | | <el-select v-model="value" placeholder="请选择查询"> |
| | | <el-select v-model="value2" placeholder="请选择查询"> |
| | | <el-option |
| | | v-for="item in options" |
| | | v-for="item in options1" |
| | | :key="item.value" |
| | | :label="item.label" |
| | | :value="item.value" |
| | |
| | | box-shadow: none; |
| | | height: 100%; |
| | | } |
| | | |
| | | .el-input__inner { |
| | | font-family: Source Han Sans CN, Source Han Sans CN, serif; |
| | | font-weight: 400; |
| | |
| | | :deep() { |
| | | .el-select__wrapper { |
| | | width: 100px; |
| | | padding-left: 30px; |
| | | padding-left: 20px; |
| | | } |
| | | } |
| | | } |