credit.js 1.19 KB
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' );
            }
        }
    });


});

});