diff --git a/static/modules/finance.js b/static/modules/finance.js
index 658ed06..ccfeddb 100644
--- a/static/modules/finance.js
+++ b/static/modules/finance.js
@@ -107,7 +107,7 @@ function renderFinance() {
${[["本月确收",money(thisMonthRev)],["本月毛利",money(thisMonthGross)],["本月回款",money(monthPayment)],["本月费用",money(monthCost)],["本月现金流",money(monthCashflow)]].map(([l,v]) => `
`).join("")}
-
+
@@ -166,7 +166,7 @@ function renderFinance() {
- ${card(`${[["已签约","已签约"],["流程中","流程中"],["待签约","待签约"]].map(([k,v]) => ``).join("")}
| 项目名称 | 类型 | 状态 | 签约月份 | 签约金额 | ${monthLabels.map(l => `${l} ${state.finView !== 'cashflow' ? '确收/毛利' : '回款/费用'} | `).join("")}总计 ${state.finView !== 'cashflow' ? '确收/毛利' : '回款/费用'} | 商务负责人 | 经营负责人 |
${pfs.filter(x => x.status === state.finFilter).map(renderPfRow).join("")}
`, "p-4")}
+ ${card(`项目明细 (${pfs.length})
${[["已签约","已签约"],["流程中","流程中"],["待签约","待签约"]].map(([k,v]) => ``).join("")}
| 项目名称 | 类型 | 状态 | 签约月份 | 签约金额 | ${monthLabels.map(l => `${l} ${state.finView !== 'cashflow' ? '确收/毛利' : '回款/费用'} | `).join("")}总计 ${state.finView !== 'cashflow' ? '确收/毛利' : '回款/费用'} | 商务负责人 | 经营负责人 |
${pfs.filter(x => x.status === state.finFilter).map(renderPfRow).join("")}
`, "p-4")}
`;
if (window.lucide) window.lucide.createIcons();
}