|
|
@@ -1,66 +1,68 @@
|
|
|
<!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>商品名称:</label>
|
|
|
- <input type="text" name="goodsName"/>
|
|
|
- </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>商品名称:</label>
|
|
|
+ <input type="text" name="goodsName"/>
|
|
|
+ </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="system:mall:add">
|
|
|
- <i class="fa fa-plus"></i> 添加
|
|
|
- </a>
|
|
|
-<!-- <a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="system:mall:edit">-->
|
|
|
-<!-- <i class="fa fa-edit"></i> 修改-->
|
|
|
-<!-- </a>-->
|
|
|
-<!-- <a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="system:mall:remove">-->
|
|
|
-<!-- <i class="fa fa-remove"></i> 删除-->
|
|
|
-<!-- </a>-->
|
|
|
-<!-- <a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:mall: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 class="btn-group-sm" id="toolbar" role="group">
|
|
|
+ <a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="system:mall:add">
|
|
|
+ <i class="fa fa-plus"></i> 添加
|
|
|
+ </a>
|
|
|
+ <!-- <a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="system:mall:edit">-->
|
|
|
+ <!-- <i class="fa fa-edit"></i> 修改-->
|
|
|
+ <!-- </a>-->
|
|
|
+ <!-- <a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="system:mall:remove">-->
|
|
|
+ <!-- <i class="fa fa-remove"></i> 删除-->
|
|
|
+ <!-- </a>-->
|
|
|
+ <!-- <a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:mall: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>
|
|
|
- <th:block th:include="include :: footer" />
|
|
|
- <script th:inline="javascript">
|
|
|
- var editFlag = [[${@permission.hasPermi('system:mall:edit')}]];
|
|
|
- var removeFlag = [[${@permission.hasPermi('system:mall:remove')}]];
|
|
|
- var goodsTypeDatas = [[${@dict.getType('goods_type')}]];
|
|
|
- var goodsCurrentPriceDatas = [[${@dict.getType('sys_yes_no')}]];
|
|
|
- var prefix = ctx + "system/mall";
|
|
|
+</div>
|
|
|
+<th:block th:include="include :: footer"/>
|
|
|
+<script th:inline="javascript">
|
|
|
+ var editFlag = [[${@permission.hasPermi('system:mall:edit')}]];
|
|
|
+ var removeFlag = [[${@permission.hasPermi('system:mall:remove')}]];
|
|
|
+ var goodsTypeDatas = [[${@dict.getType('goods_type')}]];
|
|
|
+ var goodsCurrentPriceDatas = [[${@dict.getType('sys_yes_no')}]];
|
|
|
+ var prefix = ctx + "system/mall";
|
|
|
|
|
|
- $(function() {
|
|
|
- var options = {
|
|
|
- url: prefix + "/list",
|
|
|
- createUrl: prefix + "/add",
|
|
|
- updateUrl: prefix + "/edit/{id}",
|
|
|
- removeUrl: prefix + "/remove",
|
|
|
- exportUrl: prefix + "/export",
|
|
|
- modalName: "商品",
|
|
|
- columns: [{
|
|
|
- checkbox: true
|
|
|
- },
|
|
|
+ $(function () {
|
|
|
+ var options = {
|
|
|
+ url: prefix + "/list",
|
|
|
+ createUrl: prefix + "/add",
|
|
|
+ updateUrl: prefix + "/edit/{id}",
|
|
|
+ removeUrl: prefix + "/remove",
|
|
|
+ exportUrl: prefix + "/export",
|
|
|
+ modalName: "商品",
|
|
|
+ columns: [{
|
|
|
+ checkbox: true
|
|
|
+ },
|
|
|
{
|
|
|
field: 'id',
|
|
|
title: '主键id',
|
|
|
@@ -73,8 +75,8 @@
|
|
|
{
|
|
|
field: 'goodsType',
|
|
|
title: '商品种类',
|
|
|
- formatter: function(value, row, index) {
|
|
|
- return $.table.selectDictLabel(goodsTypeDatas, value);
|
|
|
+ formatter: function (value, row, index) {
|
|
|
+ return $.table.selectDictLabel(goodsTypeDatas, value);
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
@@ -90,8 +92,8 @@
|
|
|
{
|
|
|
field: 'goodsCurrentPrice',
|
|
|
title: '时价商品',
|
|
|
- formatter: function(value, row, index) {
|
|
|
- return $.table.selectDictLabel(goodsCurrentPriceDatas, value);
|
|
|
+ formatter: function (value, row, index) {
|
|
|
+ return $.table.selectDictLabel(goodsCurrentPriceDatas, value);
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
@@ -102,6 +104,9 @@
|
|
|
field: 'suggestionPrice',
|
|
|
title: '建议售价',
|
|
|
visible: false
|
|
|
+ }, {
|
|
|
+ field: 'goodsScore',
|
|
|
+ title: '积分兑换',
|
|
|
},
|
|
|
{
|
|
|
visible: editFlag == 'hidden' ? false : true,
|
|
|
@@ -114,39 +119,39 @@
|
|
|
{
|
|
|
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.id + '\')"><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.id + '\')"><i class="fa fa-remove"></i>删除</a>');
|
|
|
return actions.join('');
|
|
|
}
|
|
|
}]
|
|
|
- };
|
|
|
- $.table.init(options);
|
|
|
- });
|
|
|
+ };
|
|
|
+ $.table.init(options);
|
|
|
+ });
|
|
|
|
|
|
- /* 商品状态显示 */
|
|
|
- function statusTools(row) {
|
|
|
- if (row.goodsState == 2) {
|
|
|
- return '<i class=\"fa fa-toggle-off text-info fa-2x\" onclick="enable(\'' + row.id + '\')"></i> ';
|
|
|
- } else {
|
|
|
- return '<i class=\"fa fa-toggle-on text-info fa-2x\" onclick="disable(\'' + row.id + '\')"></i> ';
|
|
|
- }
|
|
|
+ /* 商品状态显示 */
|
|
|
+ function statusTools(row) {
|
|
|
+ if (row.goodsState == 2) {
|
|
|
+ return '<i class=\"fa fa-toggle-off text-info fa-2x\" onclick="enable(\'' + row.id + '\')"></i> ';
|
|
|
+ } else {
|
|
|
+ return '<i class=\"fa fa-toggle-on text-info fa-2x\" onclick="disable(\'' + row.id + '\')"></i> ';
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- /* 商品状态-下架 */
|
|
|
- function disable(id) {
|
|
|
- $.modal.confirm("确认要下架商品吗?", function() {
|
|
|
- $.operate.post(prefix + "/goodsStatus", { "id": id, "goodsState": 2 });
|
|
|
- })
|
|
|
- }
|
|
|
+ /* 商品状态-下架 */
|
|
|
+ function disable(id) {
|
|
|
+ $.modal.confirm("确认要下架商品吗?", function () {
|
|
|
+ $.operate.post(prefix + "/goodsStatus", {"id": id, "goodsState": 2});
|
|
|
+ })
|
|
|
+ }
|
|
|
|
|
|
- /* 商品状态-下架 */
|
|
|
- function enable(id) {
|
|
|
- $.modal.confirm("确认要上架商品吗?", function() {
|
|
|
- $.operate.post(prefix + "/goodsStatus", { "id": id, "goodsState": 1 });
|
|
|
- })
|
|
|
- }
|
|
|
- </script>
|
|
|
+ /* 商品状态-下架 */
|
|
|
+ function enable(id) {
|
|
|
+ $.modal.confirm("确认要上架商品吗?", function () {
|
|
|
+ $.operate.post(prefix + "/goodsStatus", {"id": id, "goodsState": 1});
|
|
|
+ })
|
|
|
+ }
|
|
|
+</script>
|
|
|
</body>
|
|
|
</html>
|