feat(M08-B): 补保洁统计趋势

This commit is contained in:
Codex
2026-06-30 10:52:38 +08:00
parent 326c534ba7
commit d35c39e33f
13 changed files with 200 additions and 21 deletions
+3 -1
View File
@@ -240,7 +240,8 @@ const statistics = reactive<CleaningStatistics>({
byStatus: [],
byStore: [],
settlements: [],
members: []
members: [],
trend: []
});
function saveToken() {
@@ -301,6 +302,7 @@ async function loadStatistics() {
statistics.byStore = result.byStore;
statistics.settlements = result.settlements;
statistics.members = result.members;
statistics.trend = result.trend;
}, '统计已刷新');
loading.statistics = false;
}