-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (67 loc) · 2.05 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Jira Rapid Board Helper</title>
<!-- 最新版本的 Bootstrap 核心 CSS 文件 -->
<link rel="stylesheet" href="bootstrap-3.4.1.min.css">
<style>
body {
padding: 10px 20px 20px 20px;
}
</style>
</head>
<body style="min-width:800px;min-height:100px;">
<p style="color: red;font-size: 12px;" id="tips"></p>
<div id="dev">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#dev" aria-controls="dev">开发</a></li>
<li role="presentation"><a href="#tester" aria-controls="tester">测试</a></li>
<li role="presentation"><a href="#component" aria-controls="component">开发小组</a></li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="dev">
<table class="table table-bordered" style="margin-top: 10px;">
<thead>
<tr>
<th>人员</th>
<th>剩余工作量(天)</th>
<th>明细</th>
</tr>
</thead>
<tbody id="devResultTbody"></tbody>
</table>
</div>
<div role="tabpanel" class="tab-pane" id="tester">
<table class="table table-bordered" style="margin-top: 10px;">
<thead>
<tr>
<th>人员</th>
<th>剩余工作量(天)</th>
<th>明细</th>
</tr>
</thead>
<tbody id="testerResultTbody"></tbody>
</table>
</div>
<div role="tabpanel" class="tab-pane" id="component">
<table class="table table-bordered" style="margin-top: 10px;">
<thead>
<tr>
<th>小组</th>
<th>剩余工作量(天)</th>
<th>明细</th>
</tr>
</thead>
<tbody id="componentResultTbody"></tbody>
</table>
</div>
</div>
</div>
<script type="text/javascript" src="jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="bootstrap-3.4.1.min.js"></script>
<!-- <script type="text/javascript" src="moment.min.js"></script> -->
<!-- <script type="text/javascript" src="moment-zh-cn.js"></script> -->
<script type="text/javascript" src="index.js"></script>
</body>
</html>