-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductDetails.html
123 lines (120 loc) · 4.23 KB
/
productDetails.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1,minimum-scale=1,user-scale=1,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="css/productDetails.css">
<title>商品详情</title>
</head>
<body>
<!--头部-->
<header id="header">
<a href="index.html" class="logo pull-left">
<img src="images/header_logo.png" alt="">
</a>
<a href="index.html" class="download_app pull-right">
<img src="images/header_app.png" alt="">
</a>
</header>
<!--搜索-->
<section id="search">
<form action="" id="search_product">
<div class="s_input">
<input type="text" placeholder="请输入你想要输入的商品">
</div>
<a href="#">搜索</a>
</form>
</section>
<!--导航条-->
<section id="product_search">
<ol class="breadcrumb">
<li><a href="index.html">首页</a></li>
<li><a href="productList.html?categoryid=0">电视</a></li>
<li class="active">电视</li>
</ol>
<a href="#">筛选</a>
</section>
<!--商品详情-->
<section id="details">
<!--js动态渲染-->
</section>
<!--参数说明-->
<section id="parameters">
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li role="presentation"><a href="#home" aria-controls="home" role="tab" data-toggle="tab" >比价购买</a></li>
<li role="presentation"><a href="#profile" aria-controls="profile" role="tab" data-toggle="tab">产品参数</a></li>
<li role="presentation" class="active"><a href="#messages" aria-controls="messages" role="tab" data-toggle="tab">优选评价</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane" id="home">
<table width= "100%">
<!--js动态渲染-->
</table>
</div>
<div role="tabpanel" class="tab-pane" id="profile">你好</div>
<div role="tabpanel" class="tab-pane active" id="messages">
<!--js动态渲染-->
</div>
</div>
</section>
<!--页脚-->
<footer id="footer">
<div class="row">
<div class="col-xs-4"><a href="">登录</a></div>
<div class="col-xs-4"><a href="">注册</a></div>
<div class="col-xs-4"><img class="arrows" src="http://www.zuyushop.com/wap/images/top.jpg" alt="">返回顶部</div>
</div>
<div class="">
<a href="#">手机APP下载</a>
<span>慢慢买手机版</span>
<span> -- 掌上比价平台</span>
<p> m.manmanbuy.com</p>
</div>
</footer>
</body>
<!--乐视图片模板-->
<script type="text/template" id="leshi">
{{each result as item index}}
<div class="de_img">
{{#item.productImg}}
</div>
<div class="de_title">
{{item.productName}}
</div>
<div class="de_info clearfix">
<span class="de_info_left">当前最低¥4255.00<!--js动态渲染--> </span>
<span class="de_info_right">333<!--js动态渲染--></span>
</div>
{{/each}}
</script>
<!--乐视比价模板-->
<script type="text/template" id='bjshop'>
{{each result as item index}}
<div>
{{#item.bjShop}}
</div>
{{/each}}
</script>
<!--评论模板-->
<script type="text/template" id='discuss'>
{{each result as item index}}
<div class="mes_title clearfix">
<span class="name">{{item.comName}}</span>
<span class="time">{{item.comTime}}</span>
</div>
<p>{{item.comFrom}}</p>
<div name="" id="mes_dis" cols="30" rows="10">
{{item.comContent}}
</div>
{{/each}}
</script>
<script src="lib/jquery/jquery.min.js"></script>
<!--自己封装的小插件,用于bootstrap分页切换Togglabletabs.js-->
<script src="js/Togglabletabs.js"></script>
<script src="js/productDetails.js"></script>
<script src="lib/artTemplate/template.js"></script>
</html>