|
|
@ -523,7 +523,7 @@ use \common\libs\MyLib; |
|
|
|
var table_data = []; |
|
|
|
var table_data = []; |
|
|
|
$.each(data,function(name,item){ |
|
|
|
$.each(data,function(name,item){ |
|
|
|
if (item[1].length) { |
|
|
|
if (item[1].length) { |
|
|
|
table_data.push(item[1]); |
|
|
|
table_data[name] = item[1]; |
|
|
|
html += '<div class="ibox float-e-margins">' + |
|
|
|
html += '<div class="ibox float-e-margins">' + |
|
|
|
' <div class="ibox-title">' + |
|
|
|
' <div class="ibox-title">' + |
|
|
|
' <h5>'+ item[0] +'</h5>' + |
|
|
|
' <h5>'+ item[0] +'</h5>' + |
|
|
@ -531,7 +531,7 @@ use \common\libs\MyLib; |
|
|
|
' <div class="ibox-content">' + |
|
|
|
' <div class="ibox-content">' + |
|
|
|
' <div class="row">' + |
|
|
|
' <div class="row">' + |
|
|
|
' <div class="col-md-12">' + |
|
|
|
' <div class="col-md-12">' + |
|
|
|
' <table id="'+ id + '_' + name +'_table">' + |
|
|
|
' <table id="'+ id + '_' + name +'_table" data-name="'+ name +'">' + |
|
|
|
' <thead>' + |
|
|
|
' <thead>' + |
|
|
|
' <tr>' + |
|
|
|
' <tr>' + |
|
|
|
' <th data-field="id">ID</th>' + |
|
|
|
' <th data-field="id">ID</th>' + |
|
|
@ -556,7 +556,7 @@ use \common\libs\MyLib; |
|
|
|
$('#'+ id).html(html).find('table').each(function(i,target){ |
|
|
|
$('#'+ id).html(html).find('table').each(function(i,target){ |
|
|
|
$(target).bootstrapTable("destroy"); |
|
|
|
$(target).bootstrapTable("destroy"); |
|
|
|
$(target).bootstrapTable({ |
|
|
|
$(target).bootstrapTable({ |
|
|
|
data: table_data[i], |
|
|
|
data: table_data[$(target).data('name')], |
|
|
|
pagination: false, |
|
|
|
pagination: false, |
|
|
|
queryParams: function (params) { |
|
|
|
queryParams: function (params) { |
|
|
|
return params; |
|
|
|
return params; |
|
|
|