forked from tempkaridc/gf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent.html
128 lines (126 loc) · 5.24 KB
/
event.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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>소녀전선 - 포인트 이벤트 표</title>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body onresize="init()">
<div class="row no-gutter">
<div class="col-xs-12" style="padding:5px;">
<table class="table primary" style="margin:0px;">
<thead>
<tr class="info">
<th id="table_title" style="text-align:center;">
스칼렛 위치 (2018-07-14 ~ 2018-08-03)
</th>
</tr>
</thead>
</table>
</div>
</div>
<div class="row no-gutter" style="height:100%; margin: auto; padding:0px; overflow-x:hidden;">
<div class="col-xs-4" style="padding:3px;">
<table class="table table-striped table-condensed" style="margin:0px;">
<thead>
<tr class="active">
<th id="head_week1" style="text-align:center;">
</th>
</tr>
</thead>
</table>
<table class="table table-striped table-condensed" style="margin-bottom:5px;">
<thead>
<tr class="active">
<th width="80%" style="text-align:center;">미션</th>
<th width="20%" style="text-align:center;">포인트</th>
</tr>
</thead>
<tbody id="table_week1">
</tbody>
</table>
</div>
<div class="col-xs-4" style="padding:3px;">
<table class="table table-striped table-condensed" style="margin:0px;">
<thead>
<tr class="active">
<th id="head_week2" style="text-align:center;">
</th>
</tr>
</thead>
</table>
<table class="table table-striped table-condensed" style="margin-bottom:5px;">
<thead>
<tr class="active">
<th width="80%" style="text-align:center;">미션</th>
<th width="20%" style="text-align:center;">포인트</th>
</tr>
</thead>
<tbody id="table_week2">
</tbody>
</table>
</div>
<div class="col-xs-4" style="padding:3px;">
<table class="table table-striped table-condensed" style="margin:0px;">
<thead>
<tr class="active">
<th id="head_week3" style="text-align:center;">
</th>
</tr>
</thead>
</table>
<table class="table table-striped table-condensed" style="margin-bottom:5px;">
<thead>
<tr class="active">
<th width="80%" style="text-align:center;">미션</th>
<th width="20%" style="text-align:center;">포인트</th>
</tr>
</thead>
<tbody id="table_week3">
</tbody>
</table>
</div>
</div>
<div class="row no-gutter">
<div class="col-xs-12">
<table class="table table-striped table-condensed" style="margin-bottom:0px;">
<tbody>
<tr class="info">
<td width="100%" style="text-align:center;">
<div id="selAll" class="btn btn-success btn-xs" style="float:left;">
전체 선택
</div>
<div id="selNo" class="btn btn-default btn-xs" style="float:left;">
전체 해제
</div>
<b><font color="#00008b"><span id="sumTotal"></span></font></b>
<label class="btn btn-danger btn-xs" style="float:right;">이벤트 CSV 업로드
<input id="csv" type="file" style="display: none;" onchange="readCSV(this);">
</label>
<div id="csvDown" class="btn btn-primary btn-xs" style="float:right;">
CSV 예제 다운로드
</div>
</td>
</tr>
</tbody>
</table>
<table class="table table-striped table-condensed" style="margin:0px;">
<thead>
<tr class="active">
<th width="20%" style="text-align:center;">포인트</th>
<th width="80%" style="text-align:center;">보상</th>
</tr>
</thead>
<tbody id="table_reward">
</tbody>
</table>
</div>
</div>
<script src="js/extlib/jquery-2.2.4.min.js"></script>
<script src="js/extlib/bootstrap.js"></script>
<script src="js/params.js"></script>
<script src="js/event.js"></script>
</body>
</html>