statusFlowDetail.html 5.77 KB
<!DOCTYPE HTML>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<meta charset="utf-8">
<head th:include="include :: header"></head>
<body>

<div class="btn-group hidden-xs" id="toolbar" role="group">
    <a class="btn btn-outline btn-success btn-rounded" onclick="add()"
       shiro:hasPermission="config:statusFlowDetail:add">
        <i class="fa fa-plus"></i> 新增
    </a>
    <a class="btn btn-outline btn-danger btn-rounded" onclick="$.operate.batRemove()"
       shiro:hasPermission="config:statusFlowDetail:remove">
        <i class="fa fa-trash-o"></i> 删除
    </a>
</div>
<div class="col-sm-12">
    <table id="bootstrap-table" data-mobile-responsive="true" class="table table-bordered table-hover"></table>
</div>


<div th:include="include :: footer"></div>
<script th:inline="javascript">
    var prefix = ctx + "config/statusFlowDetail";
    var editFlag = [[${@permission.hasPermi('config:statusFlowDetails:edit')}]];
    var removeFlag = [[${@permission.hasPermi('config:statusFlowDetails:remove')}]];
    var datas = [[${@dict.getType('sys_normal_disable')}]];
    var moduleType = [[${@dict.getType('moduleType')}]];
    var nessaryDatas = [[${@dict.getType('nessary')}]];

    $(function () {
        var options = {
            url: prefix + "/list",
            createUrl: prefix + "/add",
            updateUrl: prefix + "/edit/{id}",
            removeUrl: prefix + "/remove",
            modalName: "流程明细",
            queryParams: function (params) {
                return {
                    // 传递参数查询参数
                    headerId: [[${headerId}]],
                    pageSize: params.limit,
                    pageNum: params.offset / params.limit + 1,
                    searchValue: params.search,
                    orderByColumn: params.sort,
                    isAsc: params.order
                };
            },
            search: false,
            sortName: "id",
            sortOrder: "desc",
            columns: [{
                checkbox: true
            },
                {
                    field: 'id',
                    title: 'id'
                },
                {
                    field: 'headerId',
                    title: '头表id',
                    visible: false
                },
                {
                    field: 'flowCode',
                    title: '状态流'
                },
                /* {
                     field : 'warehouseCode',
                     title : '仓库编码'
                 },*/
                {
                    field: 'moduleType',
                    title: '模块',
                    align: "center",
                    formatter: function (value, item, index) {
                        return $.table.selectDictLabel(moduleType, value);
                    }
                },
                {
                    field: 'recordType',
                    title: '类型'
                },
                {
                    field: 'sequence',
                    title: '序号'
                },
                {
                    field: 'nessary',
                    title: '是否是必须流程',
                    align: 'center',
                    formatter: function (value, row, index) {
                        return $.table.selectDictLabel(nessaryDatas, value);
                    }
                },
                {
                    field: 'enable',
                    title: '是否有效',
                    align: 'center',
                    formatter: function (value, row, index) {
                        return $.table.selectDictLabel(datas, value);
                    }
                },
                {
                    field: 'version',
                    title: '数据版本',
                    visible: false
                },
                {
                    field: 'processStamp',
                    title: '处理标记',
                    visible: false
                },
                {
                    field: 'created',
                    title: '创建时间'
                },
                {
                    field: 'createdBy',
                    title: '创建用户'
                },
                {
                    field: 'lastUpdated',
                    title: '更新时间'
                },
                {
                    field: 'lastUpdatedBy',
                    title: '更新用户'
                },
                {
                    field: 'userDef1',
                    title: '自定义字段1',
                    visible: false
                },
                {
                    field: 'userDef2',
                    title: '自定义字段2',
                    visible: false
                },
                {
                    field: 'userDef3',
                    title: '自定义字段3',
                    visible: false
                },
                {
                    title: '操作',
                    align: 'center',
                    formatter: function (value, row, index) {
                        var actions = [];
                        actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="#" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
                        actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="#" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-trash-o"></i>删除</a>');
                        return actions.join('');
                    }
                }]
        };
        $.table.init(options);
    });

    function add() {
        var headerId = [[${headerId}]];
        $.modal.open("添加流程明细", prefix + "/add/" + headerId);
    }
</script>
</body>
</html>