cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
[#include "/business/pages/include/static.html" /]
<title>配置资料</title>
</head>
 
<body>
<div class="table_basic">
    <table>
            <tr class="title">
                 <td style="width:5%">序号</td>
                 <td style="width:20%">分类名称</td>
                 <td style="width:15%">搜索码</td>
                 <td style="width:10%">名称</td>
                 <td style="width:5%">版本</td>
                 <td style="width:15%">操作</td>
            </tr>
    [#if list??&&list?size>0]
            [#list list as dsl]
            <tr>
                <td><input type="hidden" name="dslId" value="${dsl.DSL_ID}">${dsl_index+1}</td>
                <td>${dsl.CATE_NAME}</td>
                <td>${dsl.DSL_SEARCHCODE}</td>
                <td>${dsl.DSL_NAME}</td>
                <td>${dsl.EDITION}</td>
                <td class="list_btnmore_wrap">
                    <a class="blue_txt lb_button" id="version" href="javascript:version('${dsl.DSL_ID}');"><span>版本</span></a>
                    <a class="blue_txt" id="info" href="${base}/business/pages/servicelist/dsl/dslDetail.html?id=${dsl.DSL_ID}" target="_blank"><span>详情</span></a>
                </td>
            </tr>
            [/#list]
    [#else]
        <tr>
            <td align="center" colspan="6">暂无信息</td>
        </tr>
    [/#if]
    </table>
</div>
<script type="text/javascript">
 
    $(function(){
        
    });
    
    
    //查询DSL版本列表
    function version(dslId) {
        window.top.openDialog("Ver","DSL版本",
                         {},
                         {"width":80,"height":80},
                         [],
                         "${base}/business/pages/change/viewDslVesionList.html?id="+dslId+"&flowId=${RequestParameters.flowId}");
    }
    
    
    //查询DSL关联配置列表
    function dsllinkci(dslId) {
        window.top.openDialog("linkci","关联配置",
                         {},
                         {"width":80,"height":80},
                         [],
                         "${base}/business/pages/change/viewDslLinkCi.html?id="+dslId+"&flowId=${RequestParameters.flowId}");
    }
</script>
</body>
</html>