From 0250e3008b105b133717c70459842b8ba500bcb3 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Wed, 7 Aug 2024 22:51:04 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E9=80=89=E6=8B=A9=E6=A1=86=E4=B8=BA?= =?UTF-8?q?=E8=BF=9C=E7=A8=8B=E6=90=9C=E7=B4=A2=E8=A7=A3=E5=86=B3=E5=8D=A1?= =?UTF-8?q?=E9=A1=BF=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/styles/index.scss | 20 ++++++++++++++++++ .../DetailComponent/ApprovalDetail.vue | 2 +- src/components/SearchFilesByTag.vue | 2 +- src/fvcomponents/fvSearchForm/index.vue | 21 ------------------- src/views/expense-management/ledger/index.vue | 3 ++- src/views/project-demand/summary/index.vue | 1 + src/views/project-management/filing/index.vue | 4 +++- .../implementation/attachment.vue | 2 +- .../implementation/index.vue | 4 +++- .../project-management/initiation/index.vue | 6 ++++-- src/views/special-fund/add.vue | 4 ++++ src/views/special-fund/index.vue | 1 + 12 files changed, 41 insertions(+), 29 deletions(-) diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index 985579c..a59d942 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -588,3 +588,23 @@ html, body, #app, .el-container, .el-aside, .el-main { position: relative; } } +//绘制下拉选择框远程搜索时右侧的箭头 +.el-select { + .el-select__wrapper { + .el-select__suffix::before { + content: ""; + width: 6px; + height: 6px; + border: solid #a8abb2; + border-width: 0 0 1px 1px; + transform: translate(-50%, -50%) rotate(-45deg); + } + } + + .is-focused { + .el-select__suffix::before { + margin-top: 10px; + transform: translate(-50%, -50%) rotate(-225deg) !important; + } + } +} diff --git a/src/components/DetailComponent/ApprovalDetail.vue b/src/components/DetailComponent/ApprovalDetail.vue index 46da324..24b87b0 100644 --- a/src/components/DetailComponent/ApprovalDetail.vue +++ b/src/components/DetailComponent/ApprovalDetail.vue @@ -6,7 +6,7 @@ - + - + { align-items: center; } - diff --git a/src/views/expense-management/ledger/index.vue b/src/views/expense-management/ledger/index.vue index e0981f0..5ee64d9 100644 --- a/src/views/expense-management/ledger/index.vue +++ b/src/views/expense-management/ledger/index.vue @@ -23,7 +23,8 @@ const searchConfig = ref([ clearable: true, data: [], filterable: true, - checkStrictly: true + checkStrictly: true, + remote: true } }, { diff --git a/src/views/project-demand/summary/index.vue b/src/views/project-demand/summary/index.vue index c545010..bebc49b 100644 --- a/src/views/project-demand/summary/index.vue +++ b/src/views/project-demand/summary/index.vue @@ -110,6 +110,7 @@ const searchConfig = reactive([ props: { placeholder: '请选择状态', clearable: true, + filterable:true, cacheKey: 'demand_summary', remote: true } diff --git a/src/views/project-management/filing/index.vue b/src/views/project-management/filing/index.vue index 746da8d..9c5691f 100644 --- a/src/views/project-management/filing/index.vue +++ b/src/views/project-management/filing/index.vue @@ -54,7 +54,8 @@ const searchConfig = ref([ clearable: true, data: [], filterable: true, - checkStrictly: true + checkStrictly: true, + remote:true } }, { @@ -125,6 +126,7 @@ const searchConfig = ref([ placeholder: '请选择状态', clearable: true, cacheKey: 'project_filing', + filterable: true, remote: true } }, diff --git a/src/views/project-management/implementation/attachment.vue b/src/views/project-management/implementation/attachment.vue index 95bfc8e..2273e88 100644 --- a/src/views/project-management/implementation/attachment.vue +++ b/src/views/project-management/implementation/attachment.vue @@ -3,7 +3,7 @@ - + { :deep(.el-table--fit ) { height: 300px !important; } +.add-block{ + + padding: 0 30px 30px 15px; +} diff --git a/src/views/special-fund/index.vue b/src/views/special-fund/index.vue index 2104095..c68acb8 100644 --- a/src/views/special-fund/index.vue +++ b/src/views/special-fund/index.vue @@ -31,6 +31,7 @@ const searchConfig = reactive([ props: { placeholder: '请选择状态', clearable: true, + filterable:true, cacheKey: 'special_fund', remote: true }