username@email.com
2022-08-27 6e2b929cf381e2320ba6e7dec56c0371124d2b51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 
@using Newtonsoft.Json;
@{
    Layout = "~/Views/Shared/_Layout_Search.cshtml";
}
@section headerStyle{
    <script type="text/javascript">
    dataCol = [
        { label: '关联表', name: 'CodeTable', width: 100 },
        { label: '关联字段', name: 'CodeField', width: 100 },
        {
            label: '隐码描述', name: 'Comments', key: true, width: 150, formatter: function (cellvalue, options, rowObject) {
                return "<a onclick=\"OpenWindow('" + cellvalue + "','98%','100%', '/SysCode/Edit?id=" + rowObject.Id + "')\"  >" + cellvalue + "</a>"
            }
        },
        { label: '隐码状态', name: 'RecStatusName', width: 120 },
        { label: '创建时间', name: 'CreatetimeStr', width: 130 }
    ];
    dataUrl = "/SysCode/GetCodeListInfo";
    searchCol = [
        { label: '关联表', name: 'CodeTable', labtype: 'txt' },
        { label: '关联字段', name: 'CodeField', labtype: 'txt' },
        { label: '描述', name: 'Comments', labtype: 'txt' },
        { label: '状态', name: 'RecStatus', labtype: 'combox', data: [{ code: 'A', label: '启用' }, { code: 'D', label: '停用' }] },
 
       //{ label: '创建时间', name: 'Createtime', labtype: 'datearea' }
    ];
    var _pageAdd = function () {
        OpenWindow("新增隐码", "98%", "100%", "/SysCode/Edit");
    }
    </script>
}