2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:layout="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" layout:decorator="MasterPage/Layout.Empty">
<head>
    <meta charset="UTF-8">
    <title th:text="${systemName}"></title>
    <link rel="stylesheet" type="text/css" th:href="@{${pubzyWebRoot} + 'BootStrap4/assets/plugins/jquery.steps/demo/css/jquery.steps.css'}">
    <link rel="stylesheet" th:href="@{${pubzyWebRoot} + 'BootStrap4/expand/plugins/portlet/css/portlet.css'}" />
    <style>
        .wizard > .steps > ul > li {
            width: 20%;
        }
 
        .row {
            margin-left: 0;
            margin-right: 0;
        }
 
        .wizard > .content > .body {
            width: 100%;
            height: 100%;
            padding: 0;
            overflow-y: auto;
            overflow-x: hidden;
        }
 
        .wizard > .content {
            padding: 0px;
        }
    </style>
    <script th:src="@{${pubzyWebRoot} + 'media/js/tabPages.js'}"></script>
    <script th:src="@{${pubzyWebRoot} + 'BootStrap4/assets/plugins/jquery.steps/build/jquery.steps.min.js'}" type="text/javascript"></script>
    <script>
        var f_project_def = function () {
            this.onTab = function (actionJ, params) { //切换页签
                var resMainInfoId = $("#resMainInfoId").val();
                var myaction = actionJ.action;
                var url = myaction + "?resMainInfoId=" + resMainInfoId + "&random=" + Math.random();
                FTabPages.onTab({
                    container: "#div_" + myaction,
                    isErase: actionJ.isErase,
                    url: url,
                    params: {},
                    callback: function () {
                        if (actionJ.callback != null) {
                            actionJ.callback();
                        }
                    }
                });
            };
 
            FTabPages.init({
                container: "#div_MainInfo",
                isErase: false
            });
 
            return {
                onTab: function (actionJ, path) {
                    onTab(actionJ, path);
                }
            };
        }();
 
        $(function () {
            f_project_def.onTab({action: "first", isErase: false});
        });
    </script>
</head>
<body>
<div layout:fragment="content">
    <div class="row">
        <div class="col-xs-12">
            <div class="card-box">
                <div class="row">
                    <div class="col-sm-12 col-xs-12">
                        <form id="basic-form" action="#">
                            <div>
                                <h3>资源类型</h3>
                                <section>
                                    <div id="div_first"></div>
                                </section>
                                <h3>服务信息</h3>
                                <section>
                                    <div id="div_ExtDataBase"></div>
                                </section>
                                <h3>选择范围</h3>
                                <section>
                                    <div id="div_third">
                                    </div>
                                </section>
                                <h3>基本信息</h3>
                                <section>
                                    <div id="div_BaseInfo"></div>
                                </section>
                                <h3>ESB代理</h3>
                                <section>
                                    <div id="div_EsbProxy"></div>
                                </section>
                            </div>
                        </form>
                    </div>
                </div>
            </div>
        </div>
    </div>
 
    <script src="../../js/jquery.wizard-init.js" ></script>
</div>
</body>
</html>