You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
5.0 KiB
131 lines
5.0 KiB
<?php
|
|
use \common\libs\MyLib;
|
|
?>
|
|
<?php $this->beginBlock('header_css'); ?>
|
|
<link href="/assets/css/plugins/bootstrap-table/bootstrap-table.min.css" rel="stylesheet">
|
|
<?php $this->endBlock(); ?>
|
|
|
|
<div class="wrapper wrapper-content animated fadeInRight">
|
|
<div class="ibox float-e-margins">
|
|
<div class="ibox-title">
|
|
<h5>无效库</h5>
|
|
<div class="ibox-tools">
|
|
<a class="btn btn-primary btn-xs edit-btn" data-id="0" href="javascript:void(0);" onclick="searchDlg()">
|
|
<i class="fa fa-search"></i> 搜索
|
|
</a>
|
|
<a class="btn btn-primary btn-xs edit-btn" data-id="0" href="javascript:void(0);" onclick="$('#listTable').bootstrapTable('refresh');">
|
|
<i class="fa fa-refresh"></i> 刷新
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<form role="form" class="form-inline" onsubmit="return search();">
|
|
<div class="form-group">
|
|
<button type="button" class="btn btn-primary btn-assign-return">勾选恢复</button>
|
|
<button type="button" class="btn btn-primary btn-assign-all">批量恢复</button>
|
|
<button type="button" class="btn btn-danger btn-clear">清空搜索条件</button>
|
|
</div>
|
|
</form>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<table id="listTable">
|
|
<thead>
|
|
<tr>
|
|
<th data-field="state" data-checkbox="true"></th>
|
|
<th width="50" data-field="id">ID</th>
|
|
<th data-field="car_no">车牌</th>
|
|
<th data-field="factory_model">车型</th>
|
|
<th data-field="car_man">车主</th>
|
|
<th data-field="phone">联系电话</th>
|
|
<th data-field="register_date">初登日期</th>
|
|
<th data-field="print_date">出单日期</th>
|
|
<th data-field="insurer1_date">保险日期</th>
|
|
<th data-field="company">保险公司</th>
|
|
<th data-field="op_user">业务员</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<?php $this->beginBlock('footer_js'); ?>
|
|
<script src="/assets/js/plugins/bootstrap-table/bootstrap-table.min.js"></script>
|
|
<script src="/assets/js/plugins/bootstrap-table/bootstrap-table-mobile.min.js"></script>
|
|
<script src="/assets/js/plugins/bootstrap-table/locale/bootstrap-table-zh-CN.min.js"></script>
|
|
<script>
|
|
var o = {};
|
|
function searchDlg() {
|
|
title = '综合搜索';
|
|
layer_show(title, '/database/invalid-search');
|
|
}
|
|
|
|
function refreshList() {
|
|
$('#listTable').bootstrapTable('refresh');
|
|
}
|
|
|
|
function search() {
|
|
$('#listTable').bootstrapTable('destroy');
|
|
$('#listTable').bootstrapTable({
|
|
url: "/database/invalid-index-json",
|
|
pagination: true,
|
|
sidePagination: 'server',
|
|
multipleSelectRow: true,
|
|
queryParams: function(params) {
|
|
o['limit'] = params['limit'];
|
|
o['offset'] = params['offset'];
|
|
return o;
|
|
}
|
|
});
|
|
}
|
|
|
|
$(function() {
|
|
search();
|
|
|
|
$('.btn-assign-return').click(function() {
|
|
layer.confirm('是否确认收回操作?', {
|
|
btn: ['确认','取消'], //按钮
|
|
shade: false //不显示遮罩
|
|
}, function(){
|
|
var rows = $('#listTable').bootstrapTable('getSelections');
|
|
var params = [];
|
|
rows.forEach(function(item,index,array){
|
|
params.push(item.id);
|
|
});
|
|
$.post('/database/d-return',{ids:params.join(',')},function(obj){
|
|
layer.msg(obj.msg);
|
|
if(obj.success) {
|
|
search();
|
|
}
|
|
},'json');
|
|
}, function(){
|
|
//
|
|
});
|
|
});
|
|
$('.btn-assign-all').click(function() {
|
|
layer.confirm('是否确认批量分配操作?', {
|
|
btn: ['确认','取消'], //按钮
|
|
shade: false //不显示遮罩
|
|
}, function(){
|
|
o.assign_users = $('#assign_users').val();
|
|
o.assign_count = $('#assign_count').val();
|
|
$.post('/database/d-all-assign',o,function(obj){
|
|
layer.msg(obj.msg);
|
|
if(obj.success) {
|
|
search();
|
|
}
|
|
},'json');
|
|
}, function(){
|
|
//
|
|
});
|
|
});
|
|
$('.btn-clear').click(function() {
|
|
o = {};
|
|
search();
|
|
});
|
|
});
|
|
</script>
|
|
<?php $this->endBlock(); ?>
|
|
|