-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (107 loc) · 3.78 KB
/
Copy pathindex.html
File metadata and controls
115 lines (107 loc) · 3.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BCDA ACO Performance Dashboard</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<main class="dashboard-shell">
<header class="topbar">
<div>
<p class="eyebrow">Medicare BCDA executive command center</p>
<h1>ACO Value-Based Care Performance</h1>
</div>
<div class="sync-panel" aria-label="BCDA feed status">
<span class="status-dot"></span>
<div>
<strong>BCDA v2 export</strong>
<span>Group/all: EOB, Patient, Coverage</span>
</div>
</div>
</header>
<section class="control-band" aria-label="Dashboard filters">
<div class="segmented" id="cohortFilter" role="group" aria-label="Cohort filter"></div>
<label class="control">
<span>Provider</span>
<select id="providerFilter"></select>
</label>
<label class="control">
<span>Service line</span>
<select id="serviceFilter"></select>
</label>
<label class="control search-control">
<span>Patient search</span>
<input id="patientSearch" type="search" placeholder="Name, MBI, condition" />
</label>
</section>
<section class="kpi-grid" id="kpiGrid" aria-label="Executive metrics"></section>
<section class="main-grid">
<article class="panel wide">
<div class="panel-header">
<div>
<p class="eyebrow">PMPM, utilization, quality</p>
<h2>Cohort Trend</h2>
</div>
<div class="mini-legend">
<span><i class="line teal"></i>Cost PMPM</span>
<span><i class="line gold"></i>ED / 1k</span>
<span><i class="line blue"></i>Quality</span>
</div>
</div>
<div id="trendChart" class="chart-area" aria-label="Cohort trend chart"></div>
</article>
<article class="panel">
<div class="panel-header">
<div>
<p class="eyebrow">Risk adjustment</p>
<h2>HCC Capture</h2>
</div>
</div>
<div id="hccChart" class="donut-wrap" aria-label="HCC capture chart"></div>
<div class="metric-stack" id="hccStack"></div>
</article>
<article class="panel">
<div class="panel-header">
<div>
<p class="eyebrow">Provider-level trends</p>
<h2>Network Performance</h2>
</div>
</div>
<div id="providerBars" class="provider-bars"></div>
</article>
<article class="panel wide">
<div class="panel-header">
<div>
<p class="eyebrow">Patient-level BCDA rollup</p>
<h2>Rising Risk Worklist</h2>
</div>
<button id="sortToggle" class="icon-button" type="button" title="Toggle sort metric" aria-label="Toggle sort metric">
⇅
</button>
</div>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>Patient</th>
<th>Provider</th>
<th>Total Cost</th>
<th>HCC</th>
<th>IP</th>
<th>ED</th>
<th>Quality</th>
<th>Risk</th>
</tr>
</thead>
<tbody id="patientTable"></tbody>
</table>
</div>
</article>
<aside class="panel patient-panel" id="patientDetail" aria-live="polite"></aside>
</section>
</main>
<script src="./app.js"></script>
</body>
</html>