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 }