detailShopping.js
8.21 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
define(function( require, exports, module ) {
var _Droll = require( "droll" ),
_Tools = require( "tools" ),
_Ntab = require( "ntab" ),
_Base = require( 'base' ),
_Pophint = require( 'pophint' ),
_Miniclock = require( 'miniclock' );
require( 'hoverex' );
require( 'charts' );
require( 'fancybox' );
$(function(){
/*
商品图片切换
*/
$(".thumb-list img").click(function(){
var src = $( this ).attr( "src" );
var large = $( this ).data( "large" );
$( "#zoomblock>img" ).attr( "src",src );
$( "#zoomblock .he-zoom > img" ).attr("src",large);
$( this ).parent().addClass( 'current' ).siblings().removeClass( 'current' );
});
/*
商品属性选择
*/
// 品种
var _index = 0;
if( $( '#standard-list1' ).length > 0 ){
_Tools.setSelected({
container : "#standard-list1",
tags : "li",
selected : "current",
disabledClass:"disabled",
cllback : function( index ){
_index = index;
//调用规格切换
standardShow( index );
}
});
//默认第一个展示
$( '#standard-list1 li' ).eq( 0 ).trigger( "click" );
}
/* 规格展示切换 */
function standardShow( index ){
var _elem = $( '.standard-box' ).find( '.standard-group' ).eq( index );
if( _elem.find( 'tr' ).length > 2 ){
_elem.height( '111px' );
$( '.need-more' ).show();
}else{
$( '.need-more' ).hide();
$( '.need-more span' ).removeClass( 'up' );
}
$( _elem ).css({'display':'block'})
.animate({
'left':0
}, 300 ).siblings( '.standard-group' ).css({
'display':'none',
'left':'-100%'
});
}
//规格更多展示
$( '.need-more span' ).click(function(){
var _elem = $( '.standard-box' ).find( '.standard-group' ).eq( _index );
if( !$( this ).hasClass( 'up' ) ){
$( this ).addClass( 'up' );
var _height = _elem.find( 'tr' ).height() * _elem.find( 'tr' ).length + 5;
_elem.animate({ 'height' : _height },300 );
}else{
$( this ).removeClass( 'up' );
_elem.animate({ 'height' : '111px' } ,300 );
}
});
//提货点
if( $( '#standard-list2' ).length > 0 ){
_Tools.setSelected({
container : "#standard-list2",
tags : "li",
selected : "current",
disabledClass:"disabled",
cllback : function( index ){
}
});
}
//地利服务
$( '#standard-list3 li' ).click(function(){
if( $( this ).hasClass( 'current' ) ){
$( this ).removeClass( 'current' );
}else{
$( this ).addClass( 'current' );
}
});
// 选购清单展示
$( '.door' ).click(function(){
if( $( this ).hasClass( 'selected' ) ){
$( this ).removeClass( 'selected' );
$( '.room' ).hide();
}else{
$( this ).addClass( 'selected' );
$( '.room' ).show();
}
});
if( $( '.account-house' ).length > 0 ){
$( document ).on( 'click' , function( event ){
var click_target = event.target;
if(isContain( $( '.account-house' ) , click_target )){
return;
}else{
$( '.door' ).removeClass( 'selected' );
$( '.room' ).hide();
}
});
}
// 判断是否为自身或者子集
function isContain( elem, cur ){
var _in = false;
$( elem ).each(function() {
if( this == $( cur )[0] || $( this ).find( cur ).length ) {
_in = true;
}
});
return _in;
}
/*
推荐商品滚动
*/
new _Droll( $( '#goods-recommend2 .recommend-list' )[0],{
step : $( '#goods-recommend2 li' ).width() + 20,
moveNum : 5,
dirButton : true,
Media:true,// 轮播图适应响应式
onBeforeInView:function( list ){
_Base.handLazy( list );
}
});
/*
tab 切换
*/
if( $( '.n-tab' ).length > 0 ){
$( '.n-tab' ).each( function(){
new _Ntab( this, {
handler:'a',
eventType:'click',
currentClass:'current',
onShow:function( target ){
var _id = $( target ).attr( 'id' );
$( '.n-tab li' ).each( function(){
var _href = $( this ).find( 'a' ).attr( 'href' );
if( _href == '#'+_id ){
$( this ).find( 'a' ).addClass( 'current' );
}else{
$( this ).find( 'a' ).removeClass( 'current' );
}
});
}
});
});
}
/*
tab 悬浮
*/
var _fixedTop = $( '.content' ).offset().top;
$( window ).scroll( function(){
if( $( window ).scrollTop() > _fixedTop ){
$( '.tab-fixed' ).show();
}else{
$( '.tab-fixed' ).hide();
}
});
$( '.tab-fixed li' ).click( function(){
_Base.goto({
elem: $( '.content' )
});
});
//价格走势
var myChart = echarts.init(document.getElementById('graphic'));
var option = {
title : {
text: '',
subtext: ''
},
tooltip : {
trigger: 'axis'
},
legend: {
data:['寿光地利','哈尔滨哈达']
},
toolbox: {
show : false,
feature : {
mark : {show: true},
dataView : {show: true, readOnly: false},
magicType : {show: true, type: ['line', 'bar']},
restore : {show: true},
saveAsImage : {show: true}
}
},
calculable : true,
xAxis : [
{
type : 'category',
boundaryGap : false,
data : ['周一','周二','周三','周四','周五','周六','周日']
}
],
yAxis : [
{
type : 'value',
axisLabel : {
formatter: '{value}'
}
}
],
series : [
{
name:'寿光地利',
type:'line',
data:[11, 11, 15, 13, 12, 13, 10],
markPoint : {
data : [
{type : 'max', name: '最大值'},
{type : 'min', name: '最小值'}
]
},
markLine : {
data : [
{type : 'average', name: '平均值'}
]
}
},
{
name:'哈尔滨哈达',
type:'line',
data:[1, -2, 2, 5, 3, 2, 0],
markPoint : {
data : [
{name : '周最低', value : -2, xAxis: 1, yAxis: -1.5}
]
},
markLine : {
data : [
{type : 'average', name : '平均值'}
]
}
}
]
};
myChart.setOption(option);
$( window ).resize(function(){
myChart.resize();
});
/**
询价
*/
$( '#inquiryBtn' ).fancybox({
padding:0
});
$( '#inquiry-send' ).click(function(){
$.fancybox.close();
setTimeout(function(){
new _Pophint( this,{
operation: function( target ){
//确定要执行的操作
},
content: "您的询价单已成功提交,我们已通知供应商为您报价,并通过短信通知您报价结果,请随时关注您的询价单。",
showButton:false
});
} , 500 );
});
$( '#common-words' ).change(function(){
$( '#words-area' ).val( $( this ).val() );
});
/*
加入进货单成功
*/
$( '.joincart' ).click(function(){
//加入成功后
if( $( '#popup-start' ).length > 0 ){
$( '#popup-start' ).trigger( "click" );
}
});
$( '#popup-start' ).fancybox({
padding:0
});
// 登录
if( !login_flag && $( '#s-login-pop' ).length ){
$( '.nowbuy' ).click(function(){
$( '#s-login-pop' ).click();
});
$( '#s-login-pop' ).fancybox({
width:'380px',
height:'310px',
type: 'iframe',
fitToView:false,
iframe : {
preload: false,
scrolling:'no'
},
scrolling:'visible'
});
}
/*
* 集采计时器
*/
$( ".shopping-timer" ).each(function(){
new _Miniclock( this, {
//建议使用小数点两位以上的数值,
//计算基数为天,可传入任意非负数值,
//使用该参数时,倒计时展现形式将会改变。
waitByDay: 0.1
});
});
});
});