-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
83 lines (66 loc) · 2.64 KB
/
index.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
<?php
include __DIR__ .'/php/index.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="renderer" content="webkit">
<title>Laixhe-享受学习与思考的乐趣</title>
<link rel="stylesheet" href="/static/js/layui/css/layui.css">
<link rel="stylesheet" href="/static/common.css">
<link rel="stylesheet" href="/static/imformation.css">
</head>
<body>
<?php include __DIR__ .'/header.php';?>
<div class="inform_wrap">
<div class="inform container clearfix">
<?php include __DIR__ .'/left.php';?>
<div class="inform_right">
<div>
<h4 style="display: none;"><?php echo $columnData['name'];?></h4>
<?php foreach ($columnDirData as $vData){ ?>
<div class="inform_con">
<div>
<span>
<a href="/show.php?id=<?php echo $vData['id'],'&cid=',$vData['cid'];?>" title="<?php echo $vData['title'];?>" style="font-size: 16px;font-weight: bold;">
<?php echo $vData['title'];?>
</a>
</span>
</div>
<p>
<i class="layui-icon"></i>
<i><?php echo date('Y-m-d H:i:s',$vData['addtime']);?></i>
<i> </i>
<i class="layui-icon"></i>
<i title="<?php echo $cidData['as'];?>"><?php echo $cidData['name'];?></i>
</p>
</div>
<?php } ?>
</div>
<div class="inform_bottom" style="display: none;">
<a href="javascript:;" class="prev first">上一页</a>
<span> </span>
<a href="javascript:;" class="select">1</a>
<a href="javascript:;" class="select">2</a>
<a href="javascript:;" class="select">3</a>
<a href="javascript:;" class="select">4</a>
<a href="javascript:">...</a>
<a href="javascript:;" class="select last">60</a>
<span> </span>
<a href="javascript:;" class="next">下一页</a>
</div>
</div>
</div>
</div>
<div style="padding: 5px;">
<a href="http://www.miitbeian.gov.cn" target="_blank">鲁ICP备17035054号-1</a>
</div>
<script src="/static/js/jquery-1.12.4.js"></script>
<script>
var id = <?php echo $cidData['id'];?>;
$("#column li").eq(id-1).addClass("action");
</script>
</body>
</html>