creditSellList.js
2.37 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
define(function( require, exports, module ) {
var _Ntab = require( 'ntab' );
require( "fancybox" );
//修改价格弹框显示
$(".change-price").fancybox({
padding: 0,
scrolling: 'auto'
});
//关闭弹框操作
$(".fancy-ensure").click(function(){
//$.fancybox.close();
});
$(".fancy-cancel").click(function(){
$.fancybox.close();
});
//单笔订单显示更多商品
if ($(".check-more").length){
$(".single-info-limit").each(function(){
var min = 0, max = 0;
var s = 'show-on';
var words = [ '收起查看', '展开查看' ];
var tabs = $(this).find(".single-table");
for ( var i = 0, l = tabs.length; i < l; i++ ){
var h = parseInt(tabs.eq(i).height());
max = ( i < 2 ? min+=h : max+=h );
};
$(this).height( min );
if ( $(this).next().hasClass("check-more") ){
if( i === 2 ){
$(this).next().hide();
}
$(this).next().bind({
click: function(){
if ($(this).hasClass(s)){
$(this).find('span').html( words[1] );
$(this).removeClass(s);
$(this).prev().outerHeight( min );
}
else{
$(this).find('span').html( words[0] );
$(this).addClass(s);
$(this).prev().outerHeight( max );
}
return false;
}
})
};
});
}
/* tab 切换 */
if( $( '.s-tab' ).length > 0 ){
$( '.s-tab' ).each( function(){
new _Ntab( this, {
handler:'a',
eventType:'click',
currentClass:'current',
onShow:function( target ){
}
});
});
};
$(".check-protocol").fancybox({
openEffect: 'elastic',
closeEffect: 'elastic',
scrolling: 'visible',
beforeShow: function(){
$(".direction-btn").hide();
},
afterClose: function(){
$(".direction-btn").show();
}
})
});