You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
371 lines
13 KiB
Plaintext
371 lines
13 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script type="text/javascript" src="../../Scripts/QueryString.js"></script>
|
|
<script type="text/javascript" src="../../Scripts/config.js"></script>
|
|
<script type="text/javascript" src="../../Comm/Gener.js"></script>
|
|
|
|
<script src="../../Scripts/jquery-1.11.0.min.js" type="text/javascript"></script>
|
|
<script src="../../Scripts/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
|
|
<link href="../../Scripts/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
|
|
|
|
<link href="../../Scripts/bootstrap/css/font-awesome.css" rel="stylesheet" type="text/css" />
|
|
|
|
<script src="../../Scripts/bootstrap/bootstrap-table/src/bootstrap-table.js" type="text/javascript"></script>
|
|
<link href="../../Scripts/bootstrap/bootstrap-table/src/bootstrap-table.css" rel="stylesheet" type="text/css" />
|
|
<script src="../../Scripts/bootstrap/bootstrap-table/src/locale/bootstrap-table-zh-CN.js" type="text/javascript"></script>
|
|
|
|
<script src="../../Scripts/bootstrap/bootstrap-treeview/src/js/bootstrap-treeview.js" type="text/javascript"></script>
|
|
<link href="../../Scripts/bootstrap/bootstrap-treeview/src/css/bootstrap-treeview.css" rel="stylesheet" type="text/css" />
|
|
|
|
<style type="text/css">
|
|
.row-margin-top {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.search-margin {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.newBtn {
|
|
display: inline-block;
|
|
padding: 1px 4px;
|
|
margin-bottom: 0;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
line-height: 1.42857143;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
-ms-touch-action: manipulation;
|
|
touch-action: manipulation;
|
|
cursor: pointer;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
background-image: none;
|
|
border: 1px solid transparent;
|
|
border-radius: 4px;
|
|
}
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
var selectedRows = null;
|
|
var hander;
|
|
$(function () {
|
|
|
|
$("#Msg").html("正在加载,请稍后......");
|
|
|
|
//获取已经选择的岗位
|
|
var selectStation = GetQueryString("SelectStation");
|
|
|
|
//左边的树.
|
|
var dbTrees = [];
|
|
var StationTypes = new Entities("BP.Port.StationTypes");
|
|
StationTypes.RetrieveAll();
|
|
$.each(StationTypes, function (i, o) {
|
|
dbTrees.push({ "No": o.No, "Name": o.Name, "ParentNo": "0" });
|
|
});
|
|
selectedRows = [];
|
|
if (selectStation != null && selectStation != undefined && selectStation != "") {
|
|
var selectStations = selectStation.split(";");
|
|
$.each(selectStations, function (i, o) {
|
|
var item = o.split('@');
|
|
if (item.length == 2)
|
|
selectedRows.push({ "No": item[0], "Name": item[1] });
|
|
});
|
|
}
|
|
|
|
|
|
var webUser = new WebUser();
|
|
|
|
var searchTableColumns = [{
|
|
field: "_checkbox",
|
|
checkbox: true,
|
|
formatter: function (value, row, index) {
|
|
if (row.checked) {
|
|
return {
|
|
"checked": true
|
|
};
|
|
}
|
|
}
|
|
}];
|
|
|
|
//显示列的中文名称.
|
|
var tag = "No=编号,Name=名称";
|
|
$.each(tag.split(","), function (i, o) {
|
|
var exp = o.split("=");
|
|
var field;
|
|
var title;
|
|
if (exp.length == 1) {
|
|
field = title = exp[0];
|
|
} else if (exp.length == 2) {
|
|
field = exp[0];
|
|
title = exp[1];
|
|
}
|
|
if (!isLegalName(field)) {
|
|
return true;
|
|
}
|
|
searchTableColumns.push({
|
|
field: field,
|
|
title: title
|
|
});
|
|
});
|
|
|
|
|
|
loadTree(dbTrees, "0");
|
|
|
|
$('#selectGrid').bootstrapTable({
|
|
striped: true,
|
|
cache: false,
|
|
sortOrder: "asc",
|
|
strictSearch: true,
|
|
minimumCountColumns: 2,
|
|
clickToSelect: true,
|
|
sortable: false,
|
|
cardView: false,
|
|
detailView: false,
|
|
height: $(document).height() / 3,
|
|
uniqueId: "No",
|
|
columns: searchTableColumns,
|
|
"onCheck": function (row, element) {
|
|
addSelectedData(selectedRows, [row]);
|
|
loadViewGrid(selectedRows);
|
|
},
|
|
"onUncheck": function (row, element) {
|
|
removeSelectedData(selectedRows, [row]);
|
|
loadViewGrid(selectedRows);
|
|
},
|
|
"onCheckAll": function (rows) {
|
|
addSelectedData(selectedRows, rows);
|
|
loadViewGrid(selectedRows);
|
|
},
|
|
"onUncheckAll": function (rows) {
|
|
removeSelectedData(selectedRows, rows);
|
|
loadViewGrid(selectedRows);
|
|
}
|
|
});
|
|
|
|
// grid2
|
|
$('#viewGrid').bootstrapTable({
|
|
striped: true,
|
|
cache: false,
|
|
sortOrder: "asc",
|
|
strictSearch: true,
|
|
minimumCountColumns: 2,
|
|
clickToSelect: true,
|
|
sortable: false,
|
|
cardView: false,
|
|
detailView: false,
|
|
height: $(document).height() / 3,
|
|
uniqueId: "No",
|
|
columns: [{
|
|
field: 'No',
|
|
title: '编号'
|
|
}, {
|
|
field: 'Name',
|
|
title: '名称'
|
|
}, {
|
|
title: '操作', formatter: function (value, row, index) {
|
|
return '<a class="newBtn btn-danger" href="#" onclick="removeRecord(\'' + row.No + '\')">X</a>';
|
|
}
|
|
}]
|
|
});
|
|
|
|
loadViewGrid(selectedRows);
|
|
});
|
|
|
|
function loadViewGrid(json) {
|
|
if ($.isArray(json)) {
|
|
$('#viewGrid').bootstrapTable("load", json);
|
|
}
|
|
}
|
|
function addSelectedData(globalSelectedRows, selectedRows) {
|
|
if (!$.isArray(globalSelectedRows) || !$.isArray(selectedRows)) {
|
|
return;
|
|
}
|
|
$.each(selectedRows, function (i, o) {
|
|
var sel = $.grep(globalSelectedRows, function (obj) {
|
|
return obj.No == o.No;
|
|
});
|
|
if (sel.length == 0) {
|
|
globalSelectedRows.push(o);
|
|
}
|
|
});
|
|
}
|
|
function removeSelectedData(globalSelectedRows, selectedRows) {
|
|
if (!$.isArray(globalSelectedRows) || !$.isArray(selectedRows)) {
|
|
return;
|
|
}
|
|
$.each(selectedRows, function (i, o) {
|
|
for (var index = 0; index < globalSelectedRows.length; index++) {
|
|
if (o.No == globalSelectedRows[index].No) {
|
|
globalSelectedRows.splice(index, 1);
|
|
break;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
//按照节点加载数据.
|
|
function loadSelectGridByNodeID(nodeID) {
|
|
var stations = new Entities("BP.Port.Stations", "FK_StationType", nodeID);
|
|
loadSelectGrid(jQuery.makeArray(stations));
|
|
}
|
|
|
|
function loadSelectGrid(json) {
|
|
|
|
if (!$.isArray(json)) {
|
|
return;
|
|
}
|
|
|
|
// 绑定内容列表.
|
|
$('#selectGrid').bootstrapTable("hideAllColumns");
|
|
$('#selectGrid').bootstrapTable("showColumn", "_checkbox");
|
|
$('#selectGrid').bootstrapTable("showColumn", "No");
|
|
$('#selectGrid').bootstrapTable("showColumn", "Name");
|
|
|
|
|
|
|
|
if ($.isArray(selectedRows)) {
|
|
$.each(json, function (i, o) {
|
|
|
|
var sel = $.grep(selectedRows, function (obj) {
|
|
return o.No == obj.No;
|
|
});
|
|
|
|
if (sel.length > 0) {
|
|
o.checked = true;
|
|
}
|
|
});
|
|
}
|
|
$('#selectGrid').bootstrapTable("load", json);
|
|
}
|
|
|
|
function findChildren(jsonArray, parentNo) {
|
|
|
|
var appendToTree = function (treeToAppend, child) {
|
|
$.each(treeToAppend, function (i, o) {
|
|
if (o.id == child.ParentNo) {
|
|
o.nodes.push({
|
|
"id": child.No,
|
|
"text": child.Name,
|
|
"nodes": []
|
|
});
|
|
} else {
|
|
appendToTree(o.nodes, child);
|
|
}
|
|
});
|
|
};
|
|
var jsonTree = [];
|
|
if ($.isArray(jsonArray) && typeof parentNo !== "undefined") {
|
|
$.each(jsonArray, function (i, o) {
|
|
if (o.ParentNo == parentNo) {
|
|
jsonTree.push({
|
|
"id": o.No,
|
|
"text": o.Name,
|
|
"nodes": []
|
|
});
|
|
} else {
|
|
appendToTree(jsonTree, o);
|
|
}
|
|
});
|
|
}
|
|
function _(treeArray) {
|
|
$.each(treeArray, function (i, o) {
|
|
if ($.isArray(o.nodes)) {
|
|
if (o.nodes.length == 0) {
|
|
o.nodes = undefined;
|
|
} else {
|
|
_(o.nodes);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
_(jsonTree);
|
|
return jsonTree;
|
|
}
|
|
function loadTree(dbTrees, rootNo, global) {
|
|
|
|
var jsonTree = findChildren(dbTrees, rootNo);
|
|
|
|
$('#tree').treeview({
|
|
data: jsonTree, // 数据源
|
|
showCheckbox: false, //是否显示复选框
|
|
highlightSelected: true, //是否高亮选中
|
|
//nodeIcon: 'glyphicon glyphicon-user', //节点上的图标
|
|
nodeIcon: 'glyphicon',
|
|
emptyIcon: '', //没有子节点的节点图标
|
|
multiSelect: false, //多选
|
|
onNodeChecked: function (event, data) {
|
|
//alert(data.id);
|
|
},
|
|
onNodeSelected: function (event, data) {
|
|
|
|
loadSelectGridByNodeID(data.id); //, selectedRows);
|
|
|
|
}
|
|
});
|
|
}
|
|
function isLegalName(name) {
|
|
if (!name) {
|
|
return false;
|
|
}
|
|
return name.match(/^[a-zA-Z\$_][a-zA-Z\d\$_]*$/);
|
|
}
|
|
|
|
function removeRecord(No) {
|
|
$("#selectGrid").bootstrapTable("uncheckBy", {
|
|
field: "No",
|
|
values: [No]
|
|
});
|
|
$('#viewGrid').bootstrapTable("remove", {
|
|
field: "No",
|
|
values: [No]
|
|
});
|
|
}
|
|
|
|
|
|
</script>
|
|
<head>
|
|
<body>
|
|
<div class="container-fluid">
|
|
<!--<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="row">
|
|
<div class="col-md-3 col-sm-3">
|
|
<h4 class="text-center" id="title"></h4>
|
|
</div>
|
|
<div class="col-md-9 col-sm-9">
|
|
<div class="pull-center search search-margin">
|
|
<input class="form-control" type="text" placeholder="" id="TB_Key">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>-->
|
|
<div class="row row-margin-top">
|
|
<div class="col-md-4 col-sm-4">
|
|
<div id="tree"></div>
|
|
</div>
|
|
<div class="col-md-8 col-sm-8">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<table id="selectGrid"></table>
|
|
</div>
|
|
</div>
|
|
<div class="row row-margin-top">
|
|
<div class="col-md-12">
|
|
<table id="viewGrid"></table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |