产品吗查询
parent
40df46158c
commit
c672b87441
@ -1,80 +1,84 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
||||||
<head>
|
<head>
|
||||||
<th:block th:include="include :: header('组合表头')" />
|
<th:block th:include="include :: header('组合表头')" />
|
||||||
</head>
|
</head>
|
||||||
<body class="gray-bg">
|
<body class="gray-bg">
|
||||||
<div class="container-div">
|
<div class="container-div">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-12 select-table table-bordered">
|
<div class="col-sm-12 select-table table-bordered">
|
||||||
<table id="bootstrap-table"></table>
|
<table id="bootstrap-table"></table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div th:include="include :: footer"></div>
|
<div th:include="include :: footer"></div>
|
||||||
<script th:inline="javascript">
|
<script th:inline="javascript">
|
||||||
var prefix = ctx + "demo/table";
|
var prefix = ctx + "demo/table";
|
||||||
var datas = [[${@dict.getType('sys_normal_disable')}]];
|
var datas = [[${@dict.getType('sys_normal_disable')}]];
|
||||||
|
|
||||||
$(function() {
|
$(function() {
|
||||||
var options = {
|
var options = {
|
||||||
url: prefix + "/list",
|
url: prefix + "/list",
|
||||||
showSearch: false,
|
showSearch: false,
|
||||||
showRefresh: false,
|
showRefresh: false,
|
||||||
showToggle: false,
|
showToggle: false,
|
||||||
showColumns: false,
|
showColumns: false,
|
||||||
columns : [
|
onLoadSuccess: function (data) {
|
||||||
[{
|
$('#bootstrap-table').bootstrapTable('mergeCells', {index: 1, field: 'userId', rowspan:3});
|
||||||
title : '基本信息',
|
},
|
||||||
align : 'center',
|
columns : [
|
||||||
colspan : 6
|
// [{
|
||||||
}, {
|
// title : '基本信息',
|
||||||
title : '其他信息',
|
// align : 'center',
|
||||||
align : 'center',
|
// colspan : 6
|
||||||
colspan : 3
|
// }, {
|
||||||
}
|
// title : '其他信息',
|
||||||
],
|
// align : 'center',
|
||||||
[{
|
// colspan : 3
|
||||||
checkbox : true
|
// }
|
||||||
}, {
|
// ],
|
||||||
field : 'userId',
|
[{
|
||||||
title : '用户ID'
|
checkbox : true
|
||||||
}, {
|
}, {
|
||||||
field : 'userCode',
|
field : 'userId',
|
||||||
title : '用户编号'
|
title : '用户ID'
|
||||||
}, {
|
|
||||||
field : 'userName',
|
}, {
|
||||||
title : '用户姓名'
|
field : 'userCode',
|
||||||
}, {
|
title : '用户编号'
|
||||||
field : 'userPhone',
|
}, {
|
||||||
title : '用户手机'
|
field : 'userName',
|
||||||
}, {
|
title : '用户姓名'
|
||||||
field : 'userEmail',
|
}, {
|
||||||
title : '用户邮箱'
|
field : 'userPhone',
|
||||||
}, {
|
title : '用户手机'
|
||||||
field : 'userBalance',
|
}, {
|
||||||
title : '用户余额'
|
field : 'userEmail',
|
||||||
}, {
|
title : '用户邮箱'
|
||||||
field : 'status',
|
}, {
|
||||||
title : '用户状态',
|
field : 'userBalance',
|
||||||
formatter : function (value, row, index) {
|
title : '用户余额'
|
||||||
return $.table.selectDictLabel(datas, value);
|
}, {
|
||||||
}
|
field : 'status',
|
||||||
}, {
|
title : '用户状态',
|
||||||
title : '操作',
|
formatter : function (value, row, index) {
|
||||||
align : 'center',
|
return $.table.selectDictLabel(datas, value);
|
||||||
formatter : function (value, row, index) {
|
}
|
||||||
var actions = [];
|
}, {
|
||||||
actions.push('<a class="btn btn-success btn-xs" href="#"><i class="fa fa-edit"></i>编辑</a> ');
|
title : '操作',
|
||||||
actions.push('<a class="btn btn-danger btn-xs" href="#"><i class="fa fa-remove"></i>删除</a>');
|
align : 'center',
|
||||||
return actions.join('');
|
formatter : function (value, row, index) {
|
||||||
}
|
var actions = [];
|
||||||
}
|
actions.push('<a class="btn btn-success btn-xs" href="#"><i class="fa fa-edit"></i>编辑</a> ');
|
||||||
]
|
actions.push('<a class="btn btn-danger btn-xs" href="#"><i class="fa fa-remove"></i>删除</a>');
|
||||||
]
|
return actions.join('');
|
||||||
};
|
}
|
||||||
$.table.init(options);
|
}
|
||||||
});
|
]
|
||||||
</script>
|
]
|
||||||
</body>
|
};
|
||||||
|
$.table.init(options);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue