From 94dd1fe677bab14046908747db8e003a544f1195 Mon Sep 17 00:00:00 2001 From: mac Date: Tue, 16 Jun 2026 16:57:13 +0800 Subject: [PATCH] =?UTF-8?q?v3.0.1=20=E2=80=94=20=E8=B4=A2=E5=8A=A1?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E6=98=8E=E7=BB=86=E5=B7=B2=E7=AD=BE/?= =?UTF-8?q?=E5=BE=85=E7=AD=BE=E5=88=86Tab=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/app.js b/static/app.js index 3584e1f..2d41025 100644 --- a/static/app.js +++ b/static/app.js @@ -3,6 +3,7 @@ const state = { data: null, tenant: "科普·无界", opFilter: "all", + finFilter: "已签单", projectView: null, chart: null, chart2: null, @@ -453,7 +454,7 @@ function renderFinance() { ${card(`

月度趋势

`, "p-5")} ${card(`

新增项目财务

`, "p-4")} - ${card(`

项目明细 (${pfs.length})

${monthLabels.map(l => ``).join("")}${pfs.map(renderPfRow).join("")}
客户类型状态签约金额${l}
确收/毛利
销售
`, "p-4")} + ${card(`

项目明细 (${pfs.length})

${[["已签单","已签"],["待签","待签"]].map(([k,v]) => ``).join("")}
${monthLabels.map(l => ``).join("")}${pfs.filter(x => x.status === state.finFilter).map(renderPfRow).join("")}
客户类型状态签约金额${l}
确收/毛利
销售
`, "p-4")} `; if (window.lucide) window.lucide.createIcons(); }