新增 巡检照片按照巡检记录统计
parent
5e9af6295e
commit
8e63b6f105
@ -0,0 +1,204 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
||||
<head>
|
||||
<th:block th:include="include :: header('巡检记录列表')"/>
|
||||
</head>
|
||||
<body class="gray-bg">
|
||||
<div class="container-div">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 search-collapse">
|
||||
<form id="formId">
|
||||
<div class="select-list">
|
||||
<ul>
|
||||
<li class="select-time">
|
||||
<label>巡检时间:</label>
|
||||
<input type="text" class="time-input" id="startTime" placeholder="开始时间"
|
||||
name="params[beginInspectionTime]"/>
|
||||
<span>-</span>
|
||||
<input type="text" class="time-input" id="endTime" placeholder="结束时间"
|
||||
name="params[endInspectionTime]"/>
|
||||
</li>
|
||||
|
||||
<!-- <li>-->
|
||||
<!-- <label>巡检人:</label>-->
|
||||
<!-- <input type="text" name="inspectionUser"/>-->
|
||||
<!-- </li>-->
|
||||
<li>
|
||||
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i
|
||||
class="fa fa-search"></i> 搜索</a>
|
||||
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i
|
||||
class="fa fa-refresh"></i> 重置</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<!-- <div class="btn-group-sm" id="toolbar" role="group">
|
||||
<a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="manage:record_inspection:add">
|
||||
<i class="fa fa-plus"></i> 添加
|
||||
</a>
|
||||
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="manage:record_inspection:edit">
|
||||
<i class="fa fa-edit"></i> 修改
|
||||
</a>
|
||||
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="manage:record_inspection:remove">
|
||||
<i class="fa fa-remove"></i> 删除
|
||||
</a>
|
||||
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="manage:record_inspection:export">
|
||||
<i class="fa fa-download"></i> 导出
|
||||
</a>
|
||||
</div>-->
|
||||
<div class="col-sm-12 select-table table-striped">
|
||||
<!-- <table id="bootstrap-table"></table>-->
|
||||
<table id="bootstrap-table" data-page-size="10"
|
||||
data-show-custom-view="true" data-custom-view="customViewFormatter"
|
||||
data-show-custom-view-button="true"></table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<template id="profileTemplate">
|
||||
<div class="col-sm-2">
|
||||
<div class="contact-box">
|
||||
<a onclick="$.modal.openTab('图片详情','manage/record_inspection_img/mainView/%id%')">
|
||||
<div class="col-sm-12">
|
||||
<div class="text-center">
|
||||
<img alt="image" class=" m-t-xs img-responsive col-sm-12" src="/img/folder.png"
|
||||
style="padding: 20%"/>
|
||||
<div class="m-t-xs font-bold">%datatime%</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<th:block th:include="include :: footer"/>
|
||||
<th:block th:include="include :: bootstrap-table-custom-view-js"/>
|
||||
<script th:inline="javascript">
|
||||
var editFlag = [[${@permission.hasPermi('manage:record_inspection:edit')}]];
|
||||
var removeFlag = [[${@permission.hasPermi('manage:record_inspection:remove')}]];
|
||||
var prefix = ctx + "manage/record_inspection";
|
||||
|
||||
$(function () {
|
||||
var options = {
|
||||
url: prefix + "/list",
|
||||
// createUrl: prefix + "/add",
|
||||
// updateUrl: prefix + "/edit/{id}",
|
||||
// removeUrl: prefix + "/remove",
|
||||
// exportUrl: prefix + "/export",
|
||||
modalName: "巡检记录",
|
||||
sortOrder: "desc",
|
||||
sortName: "inspectionTime",
|
||||
// detailView: true,
|
||||
// onExpandRow: function (index, row, $detail) {
|
||||
// initinspectionTable(index, row, $detail);
|
||||
// },
|
||||
columns: [{
|
||||
checkbox: true
|
||||
},
|
||||
{
|
||||
field: 'inspectionId',
|
||||
title: '主键',
|
||||
visible: false
|
||||
},
|
||||
{
|
||||
field: 'inspectionTime',
|
||||
title: '巡检时间'
|
||||
},
|
||||
// {
|
||||
// field: 'inspectionUser',
|
||||
// title: '巡检人'
|
||||
// },
|
||||
{
|
||||
field: 'totalNumber',
|
||||
title: '巡检数量'
|
||||
},
|
||||
{
|
||||
field: 'normalNumber',
|
||||
title: '正常数量'
|
||||
},
|
||||
{
|
||||
field: 'abnormalNumber',
|
||||
title: '异常数量'
|
||||
},
|
||||
{
|
||||
field: 'skipNumber',
|
||||
title: '跳过数量'
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
formatter: function (value, row, index) {
|
||||
var actions = [];
|
||||
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)"' +
|
||||
' onclick="openTaskTable(\'' + row.inspectionId + '\')"><i class="fa fa-camera"></i>查看机位</a> ');
|
||||
return actions.join('');
|
||||
}
|
||||
}]
|
||||
};
|
||||
$.table.init(options);
|
||||
});
|
||||
|
||||
function customViewFormatter(data) {
|
||||
var template = $('#profileTemplate').html()
|
||||
var view = ''
|
||||
$.each(data, function (i, row) {
|
||||
view += template.replace('%id%', row.inspectionId)
|
||||
.replace("%datatime%", row.inspectionTime);
|
||||
|
||||
})
|
||||
|
||||
return `<div class="row mx-0">${view}</div>`
|
||||
}
|
||||
|
||||
function openTaskTable(id) {
|
||||
$.modal.openTab('巡检机位情况', ctx + "manage/record_inspection_task/" + id);
|
||||
}
|
||||
|
||||
/* initinspectionTable = function (index, row, $detail) {
|
||||
var childTable = $detail.html('<table style="table-layout:fixed"></table>').find('table');
|
||||
|
||||
$(childTable).bootstrapTable({
|
||||
url: ctx + "manage/record_inspection_info/list",
|
||||
method: 'post',
|
||||
sidePagination: "server",
|
||||
contentType: "application/x-www-form-urlencoded",
|
||||
queryParams: {
|
||||
inspectionId: row.inspectionId
|
||||
},
|
||||
columns: [
|
||||
{
|
||||
title: '序号',
|
||||
formatter: function (value, row, index) {
|
||||
return index+1
|
||||
}
|
||||
},
|
||||
{
|
||||
field: 'epcCode',
|
||||
title: 'RFID'
|
||||
},
|
||||
{
|
||||
field: 'locationCode',
|
||||
title: '机位码'
|
||||
},
|
||||
{
|
||||
field: 'inspectionState',
|
||||
title: '巡检结果'
|
||||
},
|
||||
{
|
||||
field: 'inspectionRemark',
|
||||
title: '异常原因'
|
||||
},
|
||||
{
|
||||
field: 'createTime',
|
||||
title: '提交时间'
|
||||
}
|
||||
|
||||
]
|
||||
});
|
||||
};*/
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue