From 1dcfeed999d1a14e7f3942545f8f634f8e880142 Mon Sep 17 00:00:00 2001 From: mll <1874467086> Date: Fri, 27 Feb 2026 22:48:51 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=90=E8=97=8F=E6=90=9C=E7=B4=A2=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/LowDesign/src/LowReport/index.vue | 6 +++--- src/views/Login/Login.vue | 8 ++++---- src/views/lowdesign/reportDesign/designData.ts | 1 + 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/components/LowDesign/src/LowReport/index.vue b/src/components/LowDesign/src/LowReport/index.vue index 8269b76..5397626 100644 --- a/src/components/LowDesign/src/LowReport/index.vue +++ b/src/components/LowDesign/src/LowReport/index.vue @@ -237,7 +237,7 @@ const initTable = async () => { type: 'input', overHidden: true, isExport: item.isExport == 'Y', - search: item.queryIsWeb == 'Y', + search: item.queryIsWeb == 'Y'&&item.isHideSearch !== 'Y', fixed: true } tableOption.value.column[item.fieldCode] = config @@ -265,11 +265,11 @@ const initTable = async () => { overHidden: true, isExport: item.isExport == 'Y', sortable: item.isShowSort == 'Y' ? 'custom' : false, - search: item.queryIsWeb == 'Y', + search: item.queryIsWeb == 'Y'&&item.isHideSearch !== 'Y', _hasChildConfig: childFieldConfigs.has(item.fieldCode), _childConfigs: childFieldConfigs.get(item.fieldCode) || [] } - if(item.queryIsWeb == 'Y') isSearch.value=true + if(item.queryIsWeb == 'Y'&&item.isHideSearch !== 'Y') isSearch.value=true if(!!item.searchDefaultValue){ if(['年','年度','年份'].includes(item.fieldName)&&item.searchDefaultValue=='本年'){ tableSearch.value[config.prop]=getCurrentDate().year diff --git a/src/views/Login/Login.vue b/src/views/Login/Login.vue index 9b8a62c..fa6b3ba 100644 --- a/src/views/Login/Login.vue +++ b/src/views/Login/Login.vue @@ -153,8 +153,8 @@ $prefix-cls: #{$namespace}-login; text-align: center; } .module img { - width: 80px; - height: 80px; + width: 72px; + height: 72px; margin-bottom: 16px; object-fit: contain; } @@ -172,8 +172,8 @@ $prefix-cls: #{$namespace}-login; .module.cockpit { grid-row: 1 / 3; img { - width: 140px; - height: 140px; + width: 130px; + height: 130px; } background: linear-gradient(180deg, rgba(109, 147, 245, 0.75), rgba(7,38,111, 0.75)); } diff --git a/src/views/lowdesign/reportDesign/designData.ts b/src/views/lowdesign/reportDesign/designData.ts index a2f22ab..39e4349 100644 --- a/src/views/lowdesign/reportDesign/designData.ts +++ b/src/views/lowdesign/reportDesign/designData.ts @@ -164,6 +164,7 @@ const infoColumn = { dictCode: { title: '字典Code', width: 180, editRender: { name: 'LowSelect', verifyEdit: true, filterable: true, noStop: true, dicData: [] } }, isExport: { title: '是否可导出', width: 90, align: "center", editRender: { name: 'LowCheckbox' } }, isHideCol: { title: '隐藏列', width: 90, align: "center", editRender: { name: 'LowCheckbox' } }, + isHideSearch: { title: '隐藏搜索', width: 90, align: "center", editRender: { name: 'LowCheckbox' } }, isAmount: { title: '是否合计', width: 75, align: "center", editRender: { name: 'LowCheckboxSum' } }, isDimension: { title: '是否维度', width: 75, align: "center", editRender: { name: 'LowCheckbox' } },