first commit
This commit is contained in:
175
WebRoot/jsp/maintenance/maintenanceDetailList4Equipment.jsp
Normal file
175
WebRoot/jsp/maintenance/maintenanceDetailList4Equipment.jsp
Normal file
@ -0,0 +1,175 @@
|
||||
<%@ page language="java" pageEncoding="UTF-8"%>
|
||||
<%@page import="com.sipai.tools.CommString"%>
|
||||
<%@page import="com.sipai.entity.maintenance.MaintenanceCommString"%>
|
||||
<%@page import="com.sipai.entity.maintenance.MaintainCommStr"%>
|
||||
<%request.setAttribute("Active_False", CommString.Active_False); %>
|
||||
<%request.setAttribute("Active_True", CommString.Active_True); %>
|
||||
<%request.setAttribute("MAINTAIN",MaintenanceCommString.MAINTENANCE_TYPE_MAINTAIN); %>
|
||||
<%request.setAttribute("INTER_MAINTENANCE",MaintenanceCommString.INTER_MAINTENANCE); %>
|
||||
<%request.setAttribute("EXTERANL_MAINTENANCE",MaintenanceCommString.EXTERANL_MAINTENANCE); %>
|
||||
<%request.setAttribute("COMMON_MAINTENANCE",MaintenanceCommString.COMMON_MAINTENANCE); %>
|
||||
<%request.setAttribute("Maintain_Month",MaintainCommStr.Maintain_Month); %>
|
||||
<%request.setAttribute("Maintain_Quarter",MaintainCommStr.Maintain_Quarter); %>
|
||||
<%request.setAttribute("Maintain_HalfYear",MaintainCommStr.Maintain_HalfYear); %>
|
||||
<%request.setAttribute("Maintain_Year",MaintainCommStr.Maintain_Year); %>
|
||||
<%request.setAttribute("START",MaintenanceCommString.PLAN_START); %>
|
||||
<%request.setAttribute("SUBMIT",MaintenanceCommString.PLAN_SUBMIT); %>
|
||||
<style type="text/css">
|
||||
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
//流程审核文件上传所需参数
|
||||
var masterId_process = '${id}';//业务Id
|
||||
var tbName_process = 'TB_Process_UploadFile'; //数据表
|
||||
var nameSpace_process ='ProcessUploadFile';//保存文件夹
|
||||
var status = 'delete';//有删除权限
|
||||
|
||||
$(function() {
|
||||
$("#table_maintenancedetail").bootstrapTable({ // 对应table标签的id
|
||||
url: ext.contextPath + '/maintenance/getList4Equipment.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,
|
||||
equipmentId: '${param.equipmentId}',
|
||||
unitId: unitId,
|
||||
dateType: '${param.dateType}',
|
||||
selectDate: '${param.selectDate}'
|
||||
}
|
||||
},
|
||||
sortName: 'id', // 要排序的字段
|
||||
sortOrder: 'desc', // 排序规则
|
||||
columns: [
|
||||
{
|
||||
field: 'equipmentcardid', // 返回json数据中的name
|
||||
title: '设备编号', // 表格表头显示文字
|
||||
align: 'center', // 左右居中
|
||||
valign: 'middle',
|
||||
width: '20%',
|
||||
formatter: function (value, row, index) {
|
||||
if(row.equipmentCard!=null && row.equipmentCard!=''){
|
||||
return row.equipmentCard.equipmentcardid;
|
||||
}
|
||||
}
|
||||
}, {
|
||||
field: 'equipmentname', // 返回json数据中的name
|
||||
title: '设备名称', // 表格表头显示文字
|
||||
align: 'center', // 左右居中
|
||||
valign: 'middle',
|
||||
width: '20%',
|
||||
formatter: function (value, row, index) {
|
||||
if(row.equipmentCard!=null && row.equipmentCard!=''){
|
||||
return row.equipmentCard.equipmentname;
|
||||
}
|
||||
}
|
||||
}, {
|
||||
field: 'ys', // 返回json数据中的name
|
||||
title: '实际费用', // 表格表头显示文字
|
||||
align: 'center', // 左右居中
|
||||
valign: 'middle',
|
||||
width: '10%',
|
||||
formatter: function (value, row, index) {
|
||||
return row.actualMoney;
|
||||
}
|
||||
},{
|
||||
field: 'insdt', // 返回json数据中的name
|
||||
title: '发起时间', // 表格表头显示文字
|
||||
align: 'center', // 左右居中
|
||||
valign: 'middle',
|
||||
width: '20%',
|
||||
formatter: function (value, row, index) {
|
||||
if(value!=null && value!=''){
|
||||
return "<span style='display: block;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;' title='" + value.substring(0, 19) + "'>" + value.substring(0, 19) + "</span>";
|
||||
}
|
||||
}
|
||||
},{
|
||||
field: 'ys', // 返回json数据中的name
|
||||
title: '问题描述', // 表格表头显示文字
|
||||
align: 'center', // 左右居中
|
||||
valign: 'middle',
|
||||
width: '20%',
|
||||
formatter: function (value, row, index) {
|
||||
return "<span style='display: block;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;' title='" + row.problemcontent + "'>" + row.problemcontent + "</span>";
|
||||
}
|
||||
},{
|
||||
title: "操作",
|
||||
align: 'center',
|
||||
valign: 'middle',
|
||||
width: '10%', // 定义列的宽度,单位为像素px
|
||||
formatter: function (value, row, index) {
|
||||
var buts='';
|
||||
buts+= '<button type="button" class="btn btn-default btn-sm" onclick="viewFunDetail(\''+row.id+'\')" data-toggle="tooltip" title="查看详情"><i class="fa fa-eye"></i><span class="hidden-md hidden-lg"> 查看详情</span></button>'
|
||||
buts='<div class="btn-group" >'+buts+'</div>';
|
||||
return buts;
|
||||
}
|
||||
}
|
||||
],
|
||||
onLoadSuccess: function () { //加载成功时执行
|
||||
adjustBootstrapTableView("table_maintenancedetail");
|
||||
},
|
||||
onLoadError: function () { //加载失败时执行
|
||||
console.info("加载数据失败");
|
||||
}
|
||||
})
|
||||
|
||||
});
|
||||
|
||||
//维修单
|
||||
var viewFunDetail = function(id){
|
||||
$.post(ext.contextPath + '/maintenance/viewMaintain.do', {id:id} , function(data) {
|
||||
$("#subDivDetail").html(data);
|
||||
openModal('subRepairModal');
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
<div class="modal fade" id="subModalMaintenanceList">
|
||||
<div class="modal-dialog modal-lg">
|
||||
<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">
|
||||
<!-- 新增界面formid强制为subForm -->
|
||||
<form class="form-horizontal" id="subForm">
|
||||
<!-- 界面提醒div强制id为alertDiv -->
|
||||
<div id="alertDiv"></div>
|
||||
<input name="status" id="status" type="hidden" value="${START}"/>
|
||||
<input name="id" id="id" type="hidden" value="${equipmentPlan.id}"/>
|
||||
|
||||
<div class="box box-primary" >
|
||||
<!-- <div class="box-header with-border">
|
||||
<h3 class="box-title">维修列表</h3>
|
||||
|
||||
<div class="box-tools pull-right">
|
||||
<a onclick="doEditEquipmentCard()" class="btn btn-box-tool" data-toggle="tooltip" title="编辑"><i class="glyphicon glyphicon-edit"></i></a>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<div class="box-body ">
|
||||
<table id="table_maintenancedetail"></table>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.modal-content -->
|
||||
</div>
|
||||
<!-- /.modal-dialog -->
|
||||
</div>
|
||||
Reference in New Issue
Block a user