From 879580ffe54b2d018714e8ee2c28af00ac206995 Mon Sep 17 00:00:00 2001 From: wkc <978997012@qq.com> Date: Tue, 10 Mar 2026 16:49:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E6=B5=81=E6=B0=B4=E6=98=8E?= =?UTF-8?q?=E7=BB=86=E6=9F=A5=E8=AF=A2=E7=AD=9B=E9=80=89=E6=A0=8F=E5=B8=83?= =?UTF-8?q?=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/detail/DetailQuery.vue | 184 +++++++++++++++++- 1 file changed, 183 insertions(+), 1 deletion(-) diff --git a/ruoyi-ui/src/views/ccdiProject/components/detail/DetailQuery.vue b/ruoyi-ui/src/views/ccdiProject/components/detail/DetailQuery.vue index 20846fe..31979be 100644 --- a/ruoyi-ui/src/views/ccdiProject/components/detail/DetailQuery.vue +++ b/ruoyi-ui/src/views/ccdiProject/components/detail/DetailQuery.vue @@ -3,7 +3,145 @@
筛选条件
-
筛选区域待接入
+ + + + + + + + + 匹配空值 + + + + + + + 匹配空值 + + + + + + + + + + + + + + + + + + + + + + +
+ + - + +
+
+ + + + + 匹配空值 + + + + + + + 匹配空值 + + + +
+ 查询 + 重置 +
+
@@ -88,6 +226,10 @@ export default { this.getOptions(); }, watch: { + dateRange(value) { + this.queryParams.transactionStartTime = value && value[0] ? value[0] : ""; + this.queryParams.transactionEndTime = value && value[1] ? value[1] : ""; + }, projectId() { this.syncProjectId(); this.getOptions(); @@ -190,6 +332,42 @@ export default { padding: 20px 16px; } +.filter-form { + margin-top: 20px; + + :deep(.el-form-item) { + margin-bottom: 18px; + } +} + +.filter-control { + width: 100%; +} + +.empty-checkbox { + margin-top: 8px; +} + +.amount-range { + display: flex; + align-items: center; + gap: 8px; +} + +.amount-separator { + color: #909399; + font-size: 13px; +} + +.filter-actions { + display: flex; + gap: 12px; + + .el-button { + flex: 1; + } +} + .shell-main { padding: 20px; } @@ -218,5 +396,9 @@ export default { .query-page-shell { grid-template-columns: 1fr; } + + .filter-actions { + flex-direction: column; + } }