From 8fc8b4788ed8be27ff6aae1cdd3fe9a584972ae3 Mon Sep 17 00:00:00 2001
From: cy <1664593601@qq.com>
Date: 星期三, 22 十一月 2023 18:41:05 +0800
Subject: [PATCH] feat: 物品统计;库存预警模板下载、上传、下载异常文件

---
 admin-web/src/components/mySearch/SearchItem.vue |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/admin-web/src/components/mySearch/SearchItem.vue b/admin-web/src/components/mySearch/SearchItem.vue
index cefc365..7e2bdf4 100644
--- a/admin-web/src/components/mySearch/SearchItem.vue
+++ b/admin-web/src/components/mySearch/SearchItem.vue
@@ -16,8 +16,9 @@
       v-model="val"
       v-if="item.type === 'cascader'"
       :options="item.options"
-      :props="item.optionsConfig.props||{ checkStrictly: true,value: 'id' }"
-      :clearable="true"
+      :props="item.optionsConfig.props||{ checkStrictly: true,emitPath: false,value: 'id' }"
+      :show-all-levels="false"
+      filterable
       style="width: 150px"
       @change="(v) => this.$emit('change', v)"
     >
@@ -27,7 +28,7 @@
       v-if="item.type === 'select'"
       :placeholder="item.placeholder || ''"
       v-model="val"
-      show-search
+      filterable
       :multiple="item.multiple || false"
       :collapse-tags="item.collapseTags || false"
       :clearable="true"

--
Gitblit v1.9.1