()
| 145 | |
| 146 | // 用于 Cesium 场景渲染的实时活跃请求(不受分页影响) |
| 147 | activeRequestsForScene() { |
| 148 | const rows = Array.isArray(this.systemData.requests) ? this.systemData.requests : []; |
| 149 | return rows.filter((req) => req.source !== 'background'); |
| 150 | }, |
| 151 | |
| 152 | recentRequests() { |
| 153 | return this.requests.slice(0, 8); |
nothing calls this directly
no outgoing calls
no test coverage detected