HEL-155: 合计列表状态列头与首页 7 月账期对齐

Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
施工员
2026-08-26 03:32:47 +00:00
co-authored by multica-agent
parent 77fc625ded
commit 609ebffdc9
2 changed files with 6 additions and 1 deletions
+2
View File
@@ -20,3 +20,5 @@ nul
.kimi/
vendor_pkgs/
node_modules/
package-lock.json
+4 -1
View File
@@ -1239,7 +1239,10 @@ async function loadAdminDashboard() {
updateDashAuditCard(data.audit);
state.dashAuditFromApi = true;
const statusHead = $("#dashStatusHead");
if (statusHead && data.period_month) statusHead.textContent = `${data.period_month}月状态`;
if (statusHead) {
// Align with the static「7 月账期」cards on the same page until monthly-close exists.
statusHead.textContent = "7月状态";
}
const listSub = $("#dashListSub");
if (listSub) listSub.textContent = `${data.from_date}${data.cutoff} · 单位:万元`;
renderBarChart(state.dashCompanies);