forked from drone/command-center-dashboard

罗广辉
2025-03-28 f6c2fdcac811de16eeb3ddb78134bac90a699dad
src/views/Home/SearchBox.vue
@@ -1,10 +1,8 @@
<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 = [
  {
@@ -14,6 +12,17 @@
  {
    value: 'Optio44n1',
    label: '事件',
  },
];
const options1 = [
  {
    value: 'Option1',
    label: '南昌市',
  },
  {
    value: 'Optio44n1',
    label: '抚州市',
  },
];
</script>
@@ -33,9 +42,9 @@
    </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"
@@ -93,6 +102,7 @@
          box-shadow: none;
          height: 100%;
        }
        .el-input__inner {
          font-family: Source Han Sans CN, Source Han Sans CN, serif;
          font-weight: 400;
@@ -119,7 +129,7 @@
    :deep() {
      .el-select__wrapper {
        width: 100px;
        padding-left: 30px;
        padding-left: 20px;
      }
    }
  }