index.php
2.49 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
<?php $this->load->view('common/header'); ?>
<body>
<div class="page-container">
<div class="body mt-20">
<table class="table table-border table-bordered table-bg" id="table">
<thead class="text-c">
<tr>
<th width="68px">操作</th>
<th>客户编号</th>
<th>姓名</th>
<th>身份证</th>
<th>手机号</th>
<th>录入时间</th>
</tr>
</thead>
<tbody class="text-c">
<tr>
<td>
<span class="dropDown dropDown_hover">
<button class="btn radius size-M">请选择 <i class="Hui-iconfont"></i></button>
<ul class="dropDown-menu menu radius box-shadow">
<li><a href="javascript:;" onclick="creatIframe('<?=site_url('/user/info')?>', '查看详细')">查看详细</a></li>
</ul>
</span>
</td>
<td>1001</td>
<td>张三</td>
<td>333333333333333333</td>
<td>13333333333</td>
<td>2018-01-01 00:00:00</td>
</tr>
<tr>
<td>
<span class="dropDown dropDown_hover">
<button class="btn radius size-M">请选择 <i class="Hui-iconfont"></i></button>
<ul class="dropDown-menu menu radius box-shadow">
<li><a href="javascript:;" onclick="creatIframe('<?=site_url('/user/info')?>', '查看详细')">查看详细</a></li>
</ul>
</span>
</td>
<td>1002</td>
<td>张三</td>
<td>333333333333333333</td>
<td>13333333333</td>
<td>2018-01-01 00:00:00</td>
</tr>
</tbody>
</table>
</div>
</div>
<?php $this->load->view('common/footer'); ?>
<script>
var table = $('#table').dataTable({
aaSorting: [[1, "desc"]]
});
</script>
</body>
<html>