// pages/statistics/index/index.js Page({ data: { totalDevices: 156, warningRate: 9.6, typeStats: [ { type: '安全帽', count: 45 }, { type: '安全带', count: 38 }, { type: '绝缘手套', count: 28 }, { type: '绝缘鞋', count: 22 }, { type: '验电器', count: 15 }, { type: '其他', count: 8 } ] }, onLoad() { this.loadStatistics(); }, loadStatistics() { // TODO: 加载统计数据 } });