260 lines
10 KiB
Plaintext
260 lines
10 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
||
<!DOCTYPE html>
|
||
|
||
<script type="text/javascript">
|
||
|
||
var checkedid="";
|
||
var doSearchContract = function() {
|
||
$("#table_contract").bootstrapTable('refresh');
|
||
};
|
||
function doSelect(dialog,grid) {
|
||
//var checkedItems = $("#table_contract").bootstrapTable('getAllSelections');
|
||
var datas="";
|
||
datas_name="";
|
||
$.each(selectionIds, function(index, item){
|
||
if(datas!=""){
|
||
datas+=",";
|
||
}
|
||
datas+=item;
|
||
});
|
||
$.post(ext.contextPath + '/sparepart/contract/getContractByIds.do', {contractIds : datas}, function(resp) {
|
||
$.each(resp, function(index, item){
|
||
if(datas_name!=""){
|
||
datas_name+=",";
|
||
}
|
||
datas_name+=item.contractname;
|
||
});
|
||
$('#${param.formId} #${param.hiddenId}' ).val(datas);
|
||
$('#${param.formId} #${param.textId}').val(datas_name);
|
||
closeModal("contract4SelectModal")
|
||
},'json');
|
||
};
|
||
function stateFormatter(value, row, index) {
|
||
var flag=false;
|
||
$.each(eval('${contracts}'), function(index, item){
|
||
if(row.id==item.id){
|
||
flag=true;
|
||
}
|
||
});
|
||
if (flag)
|
||
return {
|
||
checked : true//设置选中
|
||
};
|
||
return value;
|
||
}
|
||
var $table;
|
||
var switchStatus=false;
|
||
var selectionIds = []; //保存选中ids
|
||
function initialSelectionIds(){
|
||
var check_array =eval('${contracts}');
|
||
if(check_array!=null&& check_array.length>0){
|
||
selectionIds =new Array(check_array.length);
|
||
for(var i=0;i<check_array.length;i++){
|
||
selectionIds[i]=check_array[i].id;
|
||
}
|
||
}
|
||
}
|
||
function getCheckedIds(){
|
||
var ids="";
|
||
var check_array =eval('${contracts}');
|
||
$.each(check_array, function(index, item){
|
||
if(ids!=""){
|
||
ids+=",";
|
||
}
|
||
ids+=item.id;
|
||
});
|
||
return ids;
|
||
}
|
||
function queryParamsContract(params) {
|
||
var temp={
|
||
rows: params.limit, // 每页要显示的数据条数
|
||
page: params.offset/params.limit+1, // 每页显示数据的开始页码
|
||
sort: params.sort, // 要排序的字段
|
||
order: params.order,
|
||
search_name: $('#search_contractName').val(),
|
||
classid:checkedid,
|
||
};
|
||
return temp;
|
||
}
|
||
|
||
$(function() {
|
||
$("#search_contractName").keyup(function(){
|
||
if (event.keyCode == 13) {
|
||
event.preventDefault();
|
||
//回车查询
|
||
doSearchContract();
|
||
event.stopPropagation();
|
||
}
|
||
})
|
||
|
||
initTreeViewOnlyByContract();
|
||
|
||
initialSelectionIds();
|
||
|
||
$table=$("#table_contract").bootstrapTable({ // 对应table标签的id
|
||
url: ext.contextPath + '/sparepart/contract/getList.do', // 获取表格数据的url
|
||
//cache: false, // 设置为 false 禁用 AJAX 数据缓存, 默认为true
|
||
clickToSelect:true,
|
||
striped: true, //表格显示条纹,默认为false
|
||
pagination: true, // 在表格底部显示分页组件,默认false
|
||
pageList: [10, 20], // 设置页面可以显示的数据条数
|
||
pageSize: 10, // 页面数据条数
|
||
pageNumber: 1, // 首页页码
|
||
sidePagination: 'server', // 设置为服务器端分页
|
||
clickToSelect:true,
|
||
responseHandler:responseHandler, //在渲染页面数据之前执行的方法,此配置很重要!!!!!!!
|
||
queryParams: queryParamsContract,
|
||
queryParamsType: "limit",
|
||
sortName: 'id', // 要排序的字段
|
||
sortOrder: 'desc', // 排序规则
|
||
columns: [
|
||
{
|
||
checkbox: true, // 显示一个勾选框
|
||
//formatter: stateFormatter
|
||
formatter: function (i,row) { // 每次加载 checkbox 时判断当前 row 的 id 是否已经存在全局 Set() 里
|
||
if($.inArray(row.id,Array.from(selectionIds))!=-1){ // 因为 Set是集合,需要先转换成数组
|
||
return {
|
||
checked : true // 存在则选中
|
||
}
|
||
}
|
||
}
|
||
},{
|
||
field: 'contractnumber', // 返回json数据中的name
|
||
title: '合同编号', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle' // 上下居中
|
||
},{
|
||
field: 'contractname', // 返回json数据中的name
|
||
title: '合同名称', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle' // 上下居中
|
||
},{
|
||
field: 'contractclassName', // 返回json数据中的name
|
||
title: '合同类型', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle' // 上下居中
|
||
},{
|
||
field: 'agentName', // 返回json数据中的name
|
||
title: '经办人', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle' // 上下居中
|
||
}
|
||
],
|
||
onLoadSuccess: function(){ //加载成功时执行
|
||
adjustBootstrapTableView("table_contract");
|
||
|
||
|
||
},
|
||
onLoadError: function(){ //加载失败时执行
|
||
console.info("加载数据失败");
|
||
}
|
||
|
||
})
|
||
|
||
//绑定选中事件、取消事件、全部选中、全部取消
|
||
$table.on('check.bs.table check-all.bs.table uncheck.bs.table uncheck-all.bs.table', function (e,rows, obj) {
|
||
var ids = $.map(!$.isArray(rows) ? [rows] : rows, function (row) {
|
||
return row.id;
|
||
});
|
||
func = $.inArray(e.type, ['check', 'check-all']) > -1 ? 'union' : 'difference';
|
||
selectionIds = _[func](selectionIds, ids);
|
||
if('check'==e.type){
|
||
obj.parent().addClass("checked");
|
||
}else{
|
||
obj.parent().removeClass("checked");
|
||
}
|
||
//adjustBootstrapTableView("table_contract");
|
||
});
|
||
});
|
||
//选中事件操作数组
|
||
var union = function(array,ids){
|
||
$.each(ids, function (i, id) {
|
||
if($.inArray(id,array)==-1){
|
||
array[array.length] = id;
|
||
}
|
||
});
|
||
return array;
|
||
};
|
||
//取消选中事件操作数组
|
||
var difference = function(array,ids){
|
||
$.each(ids, function (i, id) {
|
||
var index = $.inArray(id,array);
|
||
if(index!=-1){
|
||
array.splice(index, 1);
|
||
}
|
||
});
|
||
return array;
|
||
};
|
||
var _ = {"union":union,"difference":difference};
|
||
|
||
//表格分页之前处理多选框数据
|
||
function responseHandler(res) {
|
||
$.each(res.rows, function (i, row) {
|
||
row.checkStatus = $.inArray(row.id, selectionIds) != -1; //判断当前行的数据id是否存在与选中的数组,存在则将多选框状态变为true
|
||
});
|
||
return res;
|
||
}
|
||
|
||
function initTreeViewOnlyByContract() {
|
||
$.post(ext.contextPath + '/sparepart/contractClass/getContractClassJson.do', {ng:''}, function (data) {
|
||
$('#companytree').treeview({
|
||
data: data,
|
||
showBorder: true,
|
||
levels: 3,
|
||
});
|
||
$('#companytree').on('nodeSelected', function (event, data) {
|
||
checkedid=data.id;
|
||
doSearchContract();
|
||
});
|
||
}, 'json');
|
||
};
|
||
function dorefreshContract() {
|
||
$('#search_contractName').val("");
|
||
checkedid="";
|
||
initTreeViewOnlyByContract();
|
||
doSearchContract();
|
||
}
|
||
|
||
</script>
|
||
|
||
<div class="modal fade" id="contract4SelectModal">
|
||
<div class="modal-dialog">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||
<span aria-hidden="true">×</span></button>
|
||
<h4 class="modal-title">选择合同</h4>
|
||
</div>
|
||
<div class="modal-body">
|
||
<div id="alertDiv"></div>
|
||
<div class="row">
|
||
<div class="col-sm-12">
|
||
<div class="input-group input-group-sm pull-right" style="width: 250px;margin-bottom:5px;">
|
||
<input type="text" id="search_contractName" name="search_contractName" class="form-control pull-right" placeholder="合同编号/名称">
|
||
<div class="input-group-btn" style="line-height: 30px">
|
||
<button class="btn btn-default" onclick="doSearchContract();" title="搜索"><i class="fa fa-search"></i></button>
|
||
<button class="btn btn-default" onclick="dorefreshContract();" title="重置"><i class="fa fa-refresh"></i></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="row">
|
||
<div class="col-sm-4">
|
||
<div class="col-sm-12">
|
||
<div id="companytree" style="height:100%;overflow:auto;"></div>
|
||
</div>
|
||
</div>
|
||
<div class="col-sm-8">
|
||
<table id="table_contract"></table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
|
||
<button type="button" class="btn btn-primary" onclick="doSelect()">确认</button>
|
||
</div>
|
||
</div>
|
||
<!-- /.modal-content -->
|
||
</div>
|
||
<!-- /.modal-dialog -->
|
||
</div> |