percenter_coach.html
2.9 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="yes" name="apple-touch-fullscreen">
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,maximum-scale=1, minimum-scale=1, user-scalable=no">
<title>个人中心</title>
<link rel="stylesheet" href="/static/css/common.css">
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body style="background-color: #f6f6f6">
<div class="box">
<div class="percenterTop">
<div class="perHead">
<img src="{$data.headimgurl}" />
<b>{$data.user_nickname}</b>
</div>
<div class="study_time">
<b>{$yyxs}</b>
<i>已教学学时</i>
</div>
</div>
<ul class="percenterMenu">
<li>
<a href="{:url('perinfo')}">
<img src="/static/image/per_icon01.png"/>
<i>个人信息</i>
<em></em>
</a>
</li>
<li>
<a href="{:url('user/yuyue/my_yuyue_coach')}">
<img src="/static/image/per_icon02.png"/>
<i>我的预约</i>
<em></em>
</a>
</li>
</ul>
<div class="per_footer">
<ul>
<li class="no_quan">
<a href="javascript:;">
<span class="foot_img"></span>
<p class="foot_item">预约学车</p>
</a>
</li>
<li class="foot_active">
<a href="{:url('user/profile/percenter')}">
<span class="foot_img foot_img_1"></span>
<p class="foot_item foot_item_1">个人中心</p>
</a>
</li>
</ul>
</div>
</div>
<!--弹跳框-->
<div class="full_bg"></div>
<div class="yu_tan">
<div class="yu_tan_box">
<img src="/static/image/tan_car1.png" class="tan_car"/>
<h1 class="tan_text">抱歉,您无权限操作此项</h1>
<h2 class="btn_qr">确认</h2>
</div>
<div class="cancel"></div>
</div>
<script type="text/javascript" src="/static/js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="/static/js/common.js"></script>
<script type="text/javascript" src="/static/js/study_car.js"></script>
<script>
$('.no_quan').click(function(){
$('.tan_car').attr("src","/static/image/tan_car2.png");
$('.tan_car').css({"width":"4.97rem","height":"2.88rem"});
tankuang()
return false
});
$('.btn_qr').click(function(){
$("html").css("overflow","auto");
$("body").css("overflow","auto");
$(".full_bg").hide();
$(".yu_tan").hide();
});
</script>
</body>
</html>