-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetail.html
74 lines (69 loc) · 3.22 KB
/
detail.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>深圳市蛋壳创意科技有限公司</title>
<link rel="stylesheet" href="css/public.css">
<link rel="stylesheet" href="css/detail.css">
<script type="text/javascript" src='js/jquery-3.1.1.min.js'></script>
<script type="text/javascript" src='js/vue.js'></script>
</head>
<body>
<!-- 头部 -->
<a class="mao" href="#customer_mao" style="display:none;"></a>
<div class="header" id="main_bg">
<div class="box_center clear">
<div class="fl">
<img src="img/logo_black.png" alt="" >
</div>
<div class="fr">
<ul class='clear'>
<li><a href="index.html">首页</a></li>
<li><a href="index.html?type=customer_case">客户案例</a></li>
<li>
<a href="#">技术服务</a>
<b class="b2"></b>
<div class="dev_type">
<ul class="clear">
<li>
<a class="font_color" href="app.html?type=app"><img src="img/ic_phone.png" alt=""><span>App开发</span></a><b></b></li>
<li>
<a class="font_color" href="program.html?type=program"><img src="img/ic_web_copy_4.png" alt=""><span>小程序开发</span></a><b></b></li>
<li>
<a class="font_color" href="h5.html?type=h5"><img src="img/ic_web.png" alt=""><span>网站定制</span></a><b></b></li>
<li>
<a class="font_color" href="phone.html?type=phone"><img src="img/ic_h5.png" alt=""><span>H5&手机网页</span></a>
</li>
</ul>
</div>
</li>
<li><a href="industry.html">行业新闻</a></li>
<li><a href="index.html?type=initial_custom">我要定制</a></li>
<li><a href="about.html">关于我们</a></li>
</ul>
</div>
</div>
</div>
<a class="initial_custom" href="#contact" style="display:none;"></a>
<!-- 主体类型 -->
<main id="main_box" class="detail_all">
<div class="box_center inner_page">
<div v-if="the_detail">
<img class="back" src="img/ic_next_gray.png" alt="" @click="goBack">
<h2 class="page_title">{{the_detail.title}}</h2>
<p class="page_time">{{the_detail.create_time}} by {{the_detail.author}}</p>
<div v-html="the_detail.content"></div>
</div>
</div>
</main>
<!-- 尾部 -->
<footer id="footer" class="footer clear">
<common-footer></common-footer>
</footer>
</body>
<script type="text/javascript" src='js/jquery-3.1.1.min.js'></script>
<script type="text/javascript" src='js/swiper.min.js'></script>
<script type="text/javascript" src="js/vueComponent.js?ver=1.0"></script>
<script type="text/javascript" src='js/index.js'></script>
<script type="text/javascript" src='js/detail.js'></script>
</html>