@ -1,10 +1,10 @@
<!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 = "container-div" >
< div class = "row" >
< div class = "col-sm-12 search-collapse" >
< form id = "formId" >
@ -15,22 +15,21 @@
< input type = "text" name = "epc" / >
< / li >
< li >
< label > 操作人:< / label >
< input type = "text" name = "createBy" / >
< 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]"/>
< 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]"/>
< 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 >
< 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 >
@ -38,19 +37,16 @@
< / div >
< div class = "btn-group-sm" id = "toolbar" role = "group" >
<!-- <a class="btn btn - success" onclick="$.operate.add()" shiro:hasPermission="manage:record_invalidated:add" >
< 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">
< 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">
< 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">
< / a >
< a class = "btn btn-warning" onclick = "$.table.exportExcel()" shiro:hasPermission = "manage:record_invalidated:export" >
< i class = "fa fa-download" > < / i > 导出
< / a >
< / div >
@ -58,14 +54,15 @@
< table id = "bootstrap-table" > < / table >
< / div >
< / div >
< / div >
< th:block th:include = "include :: footer" / >
< script th:inline = "javascript" >
< / 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 typeNameDatas = [[${@dict.getType('bf_y_n')}]];
var prefix = ctx + "manage/record_invalidated";
$(function () {
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
@ -91,27 +88,33 @@
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 > ');
@ -121,8 +124,6 @@
};
$.table.init(options);
});
initinspectionTable = function (index, row, $detail) {
var childTable = $detail.html('< table style = "table-layout:fixed" > < / table > ').find('table');
@ -160,6 +161,6 @@
]
});
};
< / script >
< / script >
< / body >
< / html >