From 663f3a788369469880be7091afc22bd3e0879f87 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Sat, 11 May 2024 11:36:46 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E6=97=B6=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E7=BC=93=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/edittablehead/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/edittablehead/index.vue b/src/components/edittablehead/index.vue index 72c2f0fc..4b7be45d 100644 --- a/src/components/edittablehead/index.vue +++ b/src/components/edittablehead/index.vue @@ -49,6 +49,7 @@ import { useRoute } from 'vue-router'; const functions = inject('functions') as any; import Sortable from 'sortablejs'; +import { handleClearTableQuery } from '@/utils/util'; interface TableColumnType { /** 表格列的key */ prop: string; @@ -131,6 +132,7 @@ const _arr = functions.getStorage($route.fullPath + props.columnListName); if (_arr) { columnRef.value = [..._arr]; + handleClearTableQuery(_arr); emit('update:modelValue', _arr); }