function commonConfirm(msg,call){
    showConfirmBox("消息提示",msg,call);
}

$(document).on('click','.jq_settle',function(){
        var orderId = $(this).attr('data-id');
        if(commonConfirm("确认结算订单?",function(){
            $.post(base + "/order/orders/" + 'settle.json',{id:orderId},function(data){
                if(data.success){
                    getNewspage(0);
                    initPagination(getNewspage);
                }
                commonAlert(data.msg,3000);
            });
        }));
    });

 

相关文章:

  • 2021-10-16
  • 2022-12-23
  • 2022-12-23
  • 2023-02-07
  • 2020-10-25
  • 2021-11-03
  • 2021-09-02
  • 2021-07-18
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2018-08-08
  • 2022-12-23
  • 2022-01-01
  • 2021-05-25
相关资源
相似解决方案