Files
SIPAIIS_WMS_JSSW/WebRoot/jsp/safety/EducationBuilderListForInsideJob.jsp

380 lines
16 KiB
Plaintext
Raw Normal View History

2026-01-16 14:13:44 +08:00
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ page language="java" pageEncoding="utf-8" %>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<style type="text/css">
.select2-container .select2-selection--single {
height: 34px;
line-height: 34px;
}
.select2-selection__arrow {
margin-top: 3px;
}
/*.layout{*/
/* display: flex;*/
/* padding-left: 15px;*/
/*}*/
.form-horizontal {
padding-top: 20px;
padding-left: 60px;
}
.right {
margin-left: 50px;
}
</style>
<script type="text/javascript">
var timeRangeEnd;
var timeRangeBegin;
var bindFun = function () {
var checkedItems = $("#tabll").bootstrapTable('getSelections');
var datas = "";
$.each(checkedItems, function (index, item) {
datas += item.id + ",";
});
if (datas == "") {
showAlert('d', '请先选择记录');
} else {
swal({
text: "您确定要关联此记录?",
dangerMode: true,
buttons: {
cancel: {
text: "取消",
value: null,
visible: true,
className: "btn btn-default btn-sm",
closeModal: true,
},
confirm: {
text: "确定",
value: true,
visible: true,
className: "btn btn-danger btn-sm",
closeModal: true
}
}
})
.then(function (willDelete) {
if (willDelete) {
$.post(ext.contextPath + '/safety/SafetyEducationBuilder/bindJobInside.do?jobId=${bizId}',
{
ids: datas,
}, function (data) {
if (data.code == 1) {
showAlert('s', '关联成功!');
$("#table20").bootstrapTable('refresh');
closeModel();
} else {
showAlert('d', '关联失败');
}
}, "json");
}
});
}
};
var refreshjob = function () {
$("#tabll").bootstrapTable('refresh');
};
var initFun = function () {
timeRangeEnd = null;
timeRangeBegin = null;
$("#tabll").bootstrapTable({ // 对应table标签的id
url: ext.contextPath + '/safety/SafetyEducationBuilder/getUnbindList.do', // 获取表格数据的url
cache: false, // 设置为 false 禁用 AJAX 数据缓存, 默认为true
striped: true, //表格显示条纹默认为false
pagination: true, // 在表格底部显示分页组件默认false
pageList: [10, 20, 50], // 设置页面可以显示的数据条数
pageSize: 10, // 页面数据条数
pageNumber: 1, // 首页页码
sidePagination: 'server', // 设置为服务器端分页
queryParams: function (params) { // 请求服务器数据时发送的参数可以在这里添加额外的查询参数返回false则终止请求
return {
rows: params.limit, // 每页要显示的数据条数
page: params.offset / params.limit + 1, // 每页显示数据的开始页码
sort: params.sort, // 要排序的字段
order: params.order,
timeRangeBegin: timeRangeBegin,
timeRangeEnd: timeRangeEnd,
company: $('#companyCondition').val(),
likeString: $('#likeString').val(),
}
},
sortName: 'id', // 要排序的字段
sortOrder: 'desc', // 排序规则
//detailView: true,//父子表
columns: [
{
checkbox: true, // 显示一个勾选框
}, {
field: 'educationCode', // 返回json数据中的name
title: '培训记录编号', // 表格表头显示文字
align: 'center', // 左右居中
valign: 'middle' // 上下居中
}, {
field: 'educationDate', // 返回json数据中的name
title: '培训日期', // 表格表头显示文字
align: 'center', // 左右居中
valign: 'middle', // 上下居中
formatter: function (value, row, index) {
return value.substring(0, 10);
}
}, {
field: 'name', // 返回json数据中的name
title: '姓名', // 表格表头显示文字
align: 'center', // 左右居中
valign: 'middle' // 上下居中
}, {
field: 'gender', // 返回json数据中的name
title: '性别', // 表格表头显示文字
align: 'center', // 左右居中
valign: 'middle', // 上下居中
}, {
field: 'company', // 返回json数据中的name
title: '施工单位名称', // 表格表头显示文字
align: 'center', // 左右居中
valign: 'middle' // 上下居中
}, {
field: 'deadline', // 返回json数据中的name
title: '培训有效期', // 表格表头显示文字
align: 'center', // 左右居中
valign: 'middle', // 上下居中
formatter: function (value, row, index) {
return value.substring(0, 10);
}
}
],
onLoadSuccess: function () { //加载成功时执行
adjustBootstrapTableView("tabll");
},
onLoadError: function () { //加载失败时执行
console.info("加载数据失败");
}
});
}
//对Date的扩展将 Date 转化为指定格式的String
//月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,
//年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)
Date.prototype.Format = function (fmt) {
var o = {
"M+": this.getMonth() + 1, //月份
"d+": this.getDate(), //日
"H+": this.getHours(), //小时
"m+": this.getMinutes(), //分
"s+": this.getSeconds(), //秒
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
"S": this.getMilliseconds() //毫秒
};
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
for (var k in o)
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
return fmt;
}
function consTrucTionUnit() {
var select_Data = jQuery.parseJSON('${companyList}');
console.log(select_Data);
var select_3 = $("#companyCondition").select2({
data: select_Data,
cache: false,
placeholder: '请选择',//默认文字提示
allowClear: true,//允许清空
escapeMarkup: function (markup) {
return markup;
}, // 自定义格式化防止xss注入
language: "zh-CN",
minimumInputLength: 0,
minimumResultsForSearch: 10,//数据超过十个启用搜索框
formatResult: function formatRepo(repo) {
return repo.text;
}, // 函数用来渲染结果
formatSelection: function formatRepoSelection(repo) {
return repo.text;
} // 函数用于呈现当前的选择
});
$(".select2-selection--single").css({'height': '30px', 'paddingTop': '4px'});
select_3.val('').trigger('change');
}
$(function () {
initDate1();
consTrucTionUnit();
$(".daterangepicker").css({'width': '680px'});
var flag = IsApp();
if (flag == true) {
} else {
$(".main-header").show();
$(".content-header").show();
$(".main-footer").show();
}
$('#reservationtimeD').val('');
initFun();
var select_Data = jQuery.parseJSON('${educationTypeCondition}');
var select_3 = $("#educationTypeCondition").select2({
data: select_Data,
cache: false,
placeholder: '请选择',//默认文字提示educationTypeCondition
// allowClear: true,//允许清空
escapeMarkup: function (markup) {
return markup;
}, // 自定义格式化防止xss注入
language: "zh-CN",
minimumInputLength: 0,
minimumResultsForSearch: 10,//数据超过十个启用搜索框
formatResult: function formatRepo(repo) {
return repo.text;
}, // 函数用来渲染结果
formatSelection: function formatRepoSelection(repo) {
return repo.text;
} // 函数用于呈现当前的选择
});
$(".select2-selection--single").css({'height': '30px', 'paddingTop': '4px'});
});
function initDate1() {
var locale = {
"format": 'YYYY-MM-DD HH:mm',
"separator": " ~ ",
"applyLabel": "确定",
"cancelLabel": "取消",
"fromLabel": "起始时间",
"toLabel": "结束时间'",
"customRangeLabel": "自定义",
"weekLabel": "W",
"daysOfWeek": ["日", "一", "二", "三", "四", "五", "六"],
"monthNames": ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
"firstDay": 1
};
var oldreservationtime1 = "${param.oldreservationtime1}";
if (oldreservationtime1 != "" && oldreservationtime1.length > 0) {
timeRangeBegin = oldreservationtime1.substring(0, 16);
timeRangeEnd = oldreservationtime1.substring(19, 36);
$('#reservationtimeD').val(oldreservationtime1);
} else {
timeRangeBegin = moment().subtract(3, 'days').format('YYYY-MM-DD HH:mm');
timeRangeEnd = moment().subtract(0, 'days').format('YYYY-MM-DD HH:mm');
$('#reservationtimeD').val(timeRangeBegin + locale.separator + timeRangeEnd);
}
$('#reservationtimeD').daterangepicker({
"timePicker": true,
"timePicker24Hour": true,
"linkedCalendars": false,
"autoUpdateInput": false,
"timePickerIncrement": 10,
"locale": locale,
//汉化按钮部分
ranges: {
// '今日': [moment(), moment().subtract(-1, 'days')],
'昨日': [moment().subtract(1, 'days'), moment()],
'最近7日': [moment().subtract(6, 'days'), moment().subtract(-1, 'days')],
'本月': [moment().startOf('month'), moment().endOf('month').subtract(-1, 'days')],
'上月': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month').subtract(-1, 'days')]
},
startDate: timeRangeBegin,
endDate: timeRangeEnd
}, function (start, end, label) {
timeRangeBegin = start.format(this.locale.format);
timeRangeEnd = end.format(this.locale.format);
if (!this.startDate) {
this.element.val('');
} else {
this.element.val(this.startDate.format(this.locale.format) + this.locale.separator + this.endDate.format(this.locale.format));
}
});
};
function closeModel() {
closeModal('educationModal');
}
var timeDdel = function () {
$('#reservationtimeD').val('');
timeRangeEnd = null;
timeRangeBegin = null;
};
</script>
<div class="modal fade" id="educationModal">
<div class="modal-dialog" style="width:86%;">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" onclick="closeModel()" aria-label="Close">
<span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">关联安全培训</h4>
</div>
<div class="modal-body">
<section class="content container-fluid">
<form id="subSearchForm">
<div>
<div class="form-group" style="padding:0;">
<div class="form-group pull-right form-inline">
<div class="form-group">
<label class="form-label">施工单位:</label>
<select class="form-control select2" name="company" id="companyCondition"
style="width:180px;height: 30px">
</select>
</div>
<div class="form-group">
<%-- <label class="form-label">日期:</label>--%>
<%-- <div class="input-group input-group-sm pull-right">--%>
<div class="input-group input-group-sm" style="width: 200px;">
<input type="text" autocomplete="off" class="form-control pull-left"
style="height: 30px; width: 200px; border-radius: 4px;"
id="reservationtimeD"
style="width:320px;"
placeholder="请选择培训日期时间范围">
<a class="glyphicon glyphicon-remove btn form-control-feedback input-clear-a"
style="pointer-events: auto;"
onclick="timeDdel()"></a>
</div>
</div>
<div class="input-group input-group-sm" style="width: 250px;">
<input type="text" id="likeString" name="likeString"
class="form-control pull-right"
placeholder="请输入培训记录编号/姓名">
<div class="input-group-btn">
<button type="button" class="btn btn-default" onclick="refreshjob()"><i
class="fa fa-search"></i></button>
</div>
</div>
</div>
</div>
</div>
</form>
<table id="tabll"></table>
</section>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default " onclick="closeModel()">关闭</button>
<button type="button" class="btn btn-primary " style="margin-left: 10px" onclick="bindFun()">
关联
</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>