From 737312e959065177e2edd9a16d80a5a85773a32a Mon Sep 17 00:00:00 2001 From: zhangdaiscott Date: Tue, 1 Nov 2022 16:40:53 +0800 Subject: [PATCH] =?UTF-8?q?jeecgboot-vue3/issues/181=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E7=AC=AC=E4=B8=80=E6=AC=A1=E8=BF=9B=E5=85=A5=E6=97=B6=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E9=85=8D=E7=BD=AE=E4=B8=8D=E8=83=BD=E6=8B=96=E6=8B=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Table/src/components/settings/ColumnSetting.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/Table/src/components/settings/ColumnSetting.vue b/src/components/Table/src/components/settings/ColumnSetting.vue index 7c19055..62d7972 100644 --- a/src/components/Table/src/components/settings/ColumnSetting.vue +++ b/src/components/Table/src/components/settings/ColumnSetting.vue @@ -142,8 +142,10 @@ setup(props, { emit, attrs }) { const { t } = useI18n(); const table = useTableContext(); - const popoverVisible = ref(false); - + const popoverVisible = ref(true); + // update-begin--author:sunjianlei---date:20221101---for: 修复第一次进入时列表配置不能拖拽 + nextTick(() => popoverVisible.value = false); + // update-end--author:sunjianlei---date:20221101---for: 修复第一次进入时列表配置不能拖拽 const defaultRowSelection = omit(table.getRowSelection(), 'selectedRowKeys'); let inited = false;