@extends('vip.layouts')
@section('seo_title')
{{ trans('menu.take_money') }}
@endsection
@section('content')
@push('dataTableJS')
/*var active = {
reload: function(){
//执行重载
console.log($('#form_status').val());
table.reload('{{ $dataId }}', {
page: {
curr: 1 //重新从第 1 页开始
}
,where: {
account_name:$("#form_account_name").val(),
order_id:$('#form_order_id').val(),
bank_user:$('#form_bank_user').val(),
money_small:$('#form_money_small').val(),
money_big:$('#form_money_big').val(),
status:$('#form_status').val(),
apply_startime:$('#form_apply_startime').val(),
apply_endtime:$('#form_apply_endtime').val(),
haddle_startime:$('#form_haddle_startime').val(),
haddle_endtime:$('#form_haddle_endtime').val(),
sureblur:$('.layui-form-switch').text(),
}
});
}
};*/
//$('.lay-btn-diy').on('click', function(){
// var type = $(this).data('type');
// active[type] ? active[type].call(this) : '';
//});
//重置表单
/*$('.reset').on('click',function(){
$('input').val('');
$('#form_status').val('3');
$('.layui-form-select input').val('待审核');
//var type = $(this).data('type');
//active[type] ? active[type].call(this) : '';
});
//刷新表单
$('.set').on('click',function(){
//var type = $(this).data('type');
//active[type] ? active[type].call(this) : '';
});*/
@endpush
@include('vip.datatable')
@endsection