creditBuyList.js
1.53 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
define(function( require, exports, module ) {
var _Ntab = require( 'ntab' );
require( "fancybox" );
//单笔订单显示更多商品
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") ){
$(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 ){
}
});
});
};
});