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(); }