-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrade.php
86 lines (73 loc) · 1.88 KB
/
trade.php
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
<?php
$code_page='second';
include "./head.php";
?>
<script>
$( function() {
$( "#datepicker" ).datepicker();
$( "#datepicker2" ).datepicker();
var tab = false;
$(".table_list").click(function(){
if(tab == false){
$(".table_hidden").css({display:"table-row"});
tab = true;
}else if(tab == 1){
$(".table_hidden").css({display:"none"});
tab = false;
};
});
} );
</script>
<div class="trade_cont">
<h2 class="sub_tit">코인 <span class="po_b">거래내역</span></h2>
<div class="trade_top">
<select class="select">
<option value="">ESRC</option>
<option value="">BTC</option>
<option value="">ESRC</option>
<option value="">ESRC</option>
<option value="">ESRC</option>
<option value="">ESRC</option>
</select>
<p class="date">
<input type="checkbox" name="secure_login" value="Y" checked=""> 기간 검색
<input class="input2" id="datepicker" type="text" name="날짜 시작"/> ~ <input class="input2" id="datepicker2" type="text" name="날짜 끝"/>
</p>
<button class="btnListchk2">검색</button>
</div>
<div class="trade_coin">
<ul>
<li class="left">
<h3>전체 ESRC 코인량</h3>
<p>2,453 ESRC</p>
</li>
<li class="right">
<h3>전체 ESRC 포인트량</h3>
<p>2,453 P</p>
</li>
</ul>
</div>
<p class="table_txt">※ 내역 클릭 시 상세 내용을 보실 수 있습니다.</p>
<div class="trade_table">
<table>
<thead>
<tr>
<th>일자</th>
<th>사용한 포인트</th>
<th>전환한 코인량</th>
</tr>
</thead>
<tbody>
<tr class="table_list">
<td>2020-06-09</td>
<td>8,000P</td>
<td>40 ESRC</td>
</tr>
<tr class="table_hidden">
<td colspan="3">비고내용이 들어가는 자리입니다.</td>
</tr>
</tbody>
</table>
</div>
</div>
<? include "./foot.php"; ?>