@extends('vip.layouts')
@section('seo_title')
代理列表
@endsection
@section('content')
@push('dataTableJS')
/*var active = {
reload: function(){
//执行重载
table.reload('{{ $dataId }}', {
page: {
curr: 1 //重新从第 1 页开始
}
,where: {
account:$("#form_account").val(),
register_ip:$('#form_register_ip').val(),
last_ip:$('#form_last_ip').val(),
register_url:$('#form_register_url').val(),
last_url:$('#form_last_url').val(),
regist_startime:$('#form_regist_startime').val(),
regist_endtime:$('#form_regist_endtime').val(),
statuss:$('#form_statuss').val(),
cash_small:$('#form_cash_small').val(),
cash_big:$('#form_cash_big').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_statuss').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