credit.js
1.19 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
define(function( require, exports, module ) {
/*
引入包
*/
var _Pophint = require( 'pophint' );
$(function(){
// 关闭赊销功能
if ( $(".sure-operation").length > 0 ){
$( ".sure-operation" ).click( function(){
new _Pophint( this,{
operation: function(target){
//确定要执行的操作
},
head:'<span class="safe-icon warning-icon"></span><span class="warningTips">注意!</span>',
content: "<p class='col-999'>关闭赊账付款后,所有用户将无法对您发布的商品使用赊账付款,您可以在赊账付款管理中再次开启,确定关闭?</p>",
showButton:true
});
} );
}
//全选
$( '#checkAll' ).click(function(){
var _this = $( this );
if( $( '.wrap-table td input[type="checkbox"]' ).length > 0 ){
if( _this.is( ':checked' ) ){
$( '.wrap-table td input[type="checkbox"]' ).attr( 'checked' , 'checked' );
}else{
$( '.wrap-table td input[type="checkbox"]' ).removeAttr( 'checked' );
}
}
});
});
});