@ -1,87 +1,84 @@
<!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('轮挡报废记录列表')" / >
< 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 >
< label > RFID: < / label >
< input type = "text" name = "epc" / >
< / li >
< li >
< label > 操作人:< / label >
< input type = "text" name = "createBy" / >
< / li >
< li class = "select-time" >
< label > 报废时间:< / label >
< input type = "text" class = "time-input" id = "startTime" placeholder = "开始时间"
name="params[beginCreateTime]"/>
< span > -< / span >
< input type = "text" class = "time-input" id = "endTime" placeholder = "结束时间"
name="params[endCreateTime]"/>
< / 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 = "container-div" >
< div class = "row" >
< div class = "col-sm-12 search-collapse" >
< form id = "formId" >
< div class = "select-list" >
< ul >
< li >
< label > RFID: < / label >
< input type = "text" name = "epc" / >
< / li >
< li >
< label > 异常类型:< / label >
< select name = "typeName" th:with = "type=${@dict.getType('bf_y_n')}" >
< option value = "" > 所有< / option >
< option th:each = "dict : ${type}" th:text = "${dict.dictLabel}" th:value = "${dict.dictValue}" > < / option >
< / select >
< / li >
< li class = "select-time" >
< label > 提交时间:< / label >
< input type = "text" class = "time-input" id = "startTime" placeholder = "开始时间" name = "params[beginCreateTime]" / >
< span > -< / span >
< input type = "text" class = "time-input" id = "endTime" placeholder = "结束时间" name = "params[endCreateTime]" / >
< / 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_invalidated:add">
< i class = "fa fa-plus" > < / i > 添加
< / a >
< a class = "btn btn-primary single disabled" onclick = "$.operate.edit()"
shiro:hasPermission="manage:record_invalidated:edit">
< i class = "fa fa-edit" > < / i > 修改
< / a >
< a class = "btn btn-danger multiple disabled" onclick = "$.operate.removeAll()"
shiro:hasPermission="manage:record_invalidated:remove">
< i class = "fa fa-remove" > < / i > 删除
< / a > -->
< a class = "btn btn-warning" onclick = "$.table.exportExcel()"
shiro:hasPermission="manage:record_invalidated:export">
< i class = "fa fa-download" > < / i > 导出
< / a >
< / div >
< div class = "col-sm-12 select-table table-striped" >
< table id = "bootstrap-table" > < / table >
< div class = "btn-group-sm" id = "toolbar" role = "group" >
< a class = "btn btn-success" onclick = "$.operate.add()" shiro:hasPermission = "manage:record_invalidated:add" >
< i class = "fa fa-plus" > < / i > 添加
< / a >
< a class = "btn btn-primary single disabled" onclick = "$.operate.edit()" shiro:hasPermission = "manage:record_invalidated:edit" >
< i class = "fa fa-edit" > < / i > 修改
< / a >
< a class = "btn btn-danger multiple disabled" onclick = "$.operate.removeAll()" shiro:hasPermission = "manage:record_invalidated:remove" >
< i class = "fa fa-remove" > < / i > 删除
< / a >
< a class = "btn btn-warning" onclick = "$.table.exportExcel()" shiro:hasPermission = "manage:record_invalidated:export" >
< i class = "fa fa-download" > < / i > 导出
< / a >
< / div >
< div class = "col-sm-12 select-table table-striped" >
< table id = "bootstrap-table" > < / table >
< / div >
< / div >
< / div >
< / div >
< th:block th:include = "include :: footer" / >
< script th:inline = "javascript" >
var editFlag = [[${@permission.hasPermi('manage:record_invalidated:edit ')}]];
var removeFlag = [[${@permission.hasPermi('manage:record_invalidated:remove ')}]];
var prefix = ctx + "manage/record_invalidated";
< th:block th:include = "include :: footer" / >
< script th:inline = "javascript" >
var editFlag = [[${@permission.hasPermi('manage:record_invalidated:edit')}]];
var removeFlag = [[${@permission.hasPermi('manage:record_invalidated:remove ')}]];
var typeNameDatas = [[${@dict.getType('bf_y_n ')}]];
var prefix = ctx + "manage/record_invalidated";
$(function () {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
modalName: "轮挡报废记录",
sortOrder: "desc",
sortName: "createTime",
detailView: true,
onExpandRow: function (index, row, $detail) {
initinspectionTable(index, row, $detail);
},
columns: [{
checkbox: true
},
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
modalName: "轮挡报废记录",
sortOrder: "desc",
sortName: "createTime",
detailView: true,
onExpandRow: function (index, row, $detail) {
initinspectionTable(index, row, $detail);
},
columns: [{
checkbox: true
},
{
field: 'objid',
title: '主键',
@ -91,75 +88,79 @@
field: 'epc',
title: 'RFID'
},
{
field: 'typeName',
title: '异常类型',
formatter: function(value, row, index) {
return $.table.selectDictLabel(typeNameDatas, value);
}
},
{
field: 'reason',
title: '报废原因'
title: '原因'
},
{
field: 'remark',
title: '其他说明'
},
{
field: 'createBy',
title: '操作人'
},
{
field: 'createTime',
title: '报废 时间'
title: '提交 时间'
},
{
title: '操作',
align: 'center',
formatter: function (value, row, index) {
formatter: function(value, row, index) {
var actions = [];
actions.push('< a class = "btn btn-success btn-xs ' + editFlag + '" href = "javascript:void(0)" onclick = "$.operate.edit(\'' + row.objid + '\')" > < i class = "fa fa-edit" > < / i > 编辑< / a > ');
actions.push('< a class = "btn btn-danger btn-xs ' + removeFlag + '" href = "javascript:void(0)" onclick = "$.operate.remove(\'' + row.objid + '\')" > < i class = "fa fa-remove" > < / i > 删除< / a > ');
return actions.join('');
}
}]
};
$.table.init(options);
});
initinspectionTable = function (index, row, $detail) {
var childTable = $detail.html('< table style = "table-layout:fixed" > < / table > ').find('table');
};
$.table.init(options);
});
initinspectionTable = function (index, row, $detail) {
var childTable = $detail.html('< table style = "table-layout:fixed" > < / table > ').find('table');
$(childTable).bootstrapTable({
url: ctx + "manage/record_invalidated_img/list",
method: 'post',
sidePagination: "server",
contentType: "application/x-www-form-urlencoded",
queryParams: {
invalidatedId: row.objid
},
columns: [
{
title: '序号',
formatter: function (value, row, index) {
return index+1
}
$(childTable).bootstrapTable({
url: ctx + "manage/record_invalidated_img/list",
method: 'post',
sidePagination: "server",
contentType: "application/x-www-form-urlencoded",
queryParams: {
invalidatedId: row.objid
},
{
field: 'epc',
title: 'RFID'
},
{
field: 'imgPath',
title: '图片',
formatter: function (value, row, index) {
return $.table.imageView(value, 818, 460, null);
columns: [
{
title: '序号',
formatter: function (value, row, index) {
return index+1
}
},
{
field: 'epc',
title: 'RFID'
},
{
field: 'imgPath',
title: '图片',
formatter: function (value, row, index) {
return $.table.imageView(value, 818, 460, null);
}
},
{
field: 'createBy',
title: '创建人'
},
]
});
};
< / script >
}
},
{
field: 'createBy',
title: '创建人'
},
]
});
};
< / script >
< / body >
< / html >