forked from Meituan-Dianping/SQLAdvisor
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathleft.php
More file actions
54 lines (49 loc) · 2.19 KB
/
Copy pathleft.php
File metadata and controls
54 lines (49 loc) · 2.19 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>首页左侧导航</title>
<link rel="stylesheet" type="text/css" href="css/public.css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/public.js"></script>
<head></head>
<body id="bg">
<!-- 左边节点 -->
<div class="container">
<div class="leftsidebar_box">
<a href="sql_interface.php" target="main"><div class="line">
<image src="image/coin01.png" /> 首页
</div></a>
<dl class="system_log">
<dt>
<image class="icon1" src="image/coin03.png" /><image class="icon2"
src="image/coin04.png" /> 工单管理<image class="icon3"
src="image/coin19.png" /><image class="icon4"
src="image/coin20.png" />
</dt>
<?php
session_start();
$prvi = $_SESSION['prvi'];
if($prvi!=1){
echo "<dd>";
echo "<image class='coin11' src='image/coin111.png' /><image class='coin22'";
echo "src='image/coin222.png' /><a class='cks' href='my_order.php'";
echo "target='main'>我的工单</a><image class='icon5' src='image/coin21.png' />";
echo "</dd>";
}
?>
<dd>
<img class="coin11" src="image/coin111.png" /><image class="coin22"
src="image/coin222.png" /><a class="cks" href="stat/show.html"
target="main">上线数量统计</a><image class="icon5" src="image/coin21.png" />
</dd>
<dd>
<image class="coin11" src="image/coin111.png" /><image class="coin22"
src="image/coin222.png" /><a class="cks" href="wait_order.php"
target="main">审核工单</a><image class="icon5" src="image/coin21.png" />
</dd>
</dl>
</div>
</div>
</body>
</html>