From 3667807a7b7418efc090ee3fa6a6b734bc3080bf Mon Sep 17 00:00:00 2001
From: xieb <vip_xiaobin810@163.com>
Date: Wed, 13 Sep 2023 20:36:29 +0800
Subject: [PATCH] Merge branch 'develop' of http://s16s652780.51mypc.cn:49896/r/yskj/iot_drone_web into develop

---
 src/components/Search/Select.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/components/Search/Select.vue b/src/components/Search/Select.vue
index 4a8a20e..cf2cae8 100644
--- a/src/components/Search/Select.vue
+++ b/src/components/Search/Select.vue
@@ -12,14 +12,14 @@
 const emit = defineEmits(['update:modelValue', 'handleChange'])
 type Option = {
     label: string,
-    value: string
+    value: any
 }
 const props = defineProps({
   options: {
     type: Object as () => Option[],
     required: true,
   },
-  modelValue: String,
+  modelValue: [String, Number],
 })
 const value = computed({
   get: () => props.modelValue,

--
Gitblit v1.9.3