1
duhe
2023-11-03 e6cf55b13c472954c8ff3bc65f89b3e124cdc752
WebTM/views/¼Æ»®¹ÜÀí/¹¤ÒÕ·Ïß´óÀà/Gy_RoutingGroupList.html
@@ -10,6 +10,7 @@
    <script src="../../../layuiadmin/Scripts/jquery-1.4.1.js"></script>
    <script src="../../../layuiadmin/Scripts/webConfig.js"></script>
    <script src="../../../layuiadmin/PubCustom.js"></script>
    <script src="../../../layuiadmin/soulTable.slim.js"></script>
</head>
<body>
    <div class="layui-fluid">
@@ -64,7 +65,7 @@
            base: '../../../layuiadmin/' //静态资源所在路径
        }).extend({
            index: 'lib/index', //主入口模块
        }).use(['index', 'form', 'table', 'element', 'laypage', 'laydate'], function () {
        }).use(['index', 'form', 'table', 'element', 'laypage', 'laydate','soulTable'], function () {
            //#region å…¬å…±å˜é‡
            var $ = layui.$
@@ -75,6 +76,7 @@
                , element = layui.element
                , laypage = layui.laypage
                , laydate = layui.laydate
                , soulTable = layui.soulTable
            var sWhere = "";
            var option = [];
            var HModName = "Gy_RoutingGroupList";
@@ -154,17 +156,20 @@
                    , cellMinWidth: 90
                    , limit: 50
                    , limits: [50, 500, 5000, 20000]
                    , done: function (res, curr, count) {
                        soulTable.render(this);
                    }
                    , cols: [[
                        { type: 'checkbox', fixed: 'left' }
                        , { field: 'HItemID', title: 'id', hide: true  }
                        , { field: 'HNumber', title: '代码', width: 195 }
                        , { field: 'HName', title: '名称', width: 180 }
                        , { field: 'HHelpCode', title: '助记码', width: 180 }
                        , { field: 'HShortNumber', title: '短代码', width: 180 }
                        , { field: 'HParentID', title: '父级', width: 180, hide: true }
                        , { field: 'HLevel', title: '等级', width: 180, hide: true}
                        , { field: 'HEndFlag', title: '末级标志', width: 180, hide: true }
                        , { field: 'HRemark ', title: '备注 ', width: 180 }
                        , { field: 'HItemID', title: 'id', hide: true, sort: true}
                        , { field: 'HNumber', title: '代码', width: 195, sort: true}
                        , { field: 'HName', title: '名称', width: 180, sort: true}
                        , { field: 'HHelpCode', title: '助记码', width: 180, sort: true}
                        , { field: 'HShortNumber', title: '短代码', width: 180, sort: true}
                        , { field: 'HParentID', title: '父级', width: 180, hide: true, sort: true}
                        , { field: 'HLevel', title: '等级', width: 180, hide: true, sort: true}
                        , { field: 'HEndFlag', title: '末级标志', width: 180, hide: true, sort: true}
                        , { field: 'HRemark ', title: '备注 ', width: 180, sort: true}
                    ]]
                };
            }