diff options
author | c00149107 <chenchuanyu@huawei.com> | 2017-01-23 16:53:22 +0800 |
---|---|---|
committer | c00149107 <chenchuanyu@huawei.com> | 2017-01-23 16:53:22 +0800 |
commit | 6adc7511d2405362cda6cdcf8d7875ac60b10077 (patch) | |
tree | 8d4c061c757920a081c1d10d6fc9e3dad84e9727 /portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html | |
parent | 928ff2eb017b4cfe2a9d775688493fdcbed5c008 (diff) |
Change the coding on the new sg framework
Move the logic from client to sg
Change the create parameter tab showing
Change-Id: Ieb8f7a6aaef79f3fcde31c9cf8a40c163cb944a4
Issue-ID:GSO-136
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
Diffstat (limited to 'portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html')
-rw-r--r-- | portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html | 39 |
1 files changed, 36 insertions, 3 deletions
diff --git a/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html b/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html index 89a521aa..4d62f00c 100644 --- a/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html +++ b/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html @@ -1,6 +1,6 @@ <!--
- Copyright 2016, Huawei Technologies Co., Ltd.
+ Copyright 2016-2017, Huawei Technologies Co., Ltd.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -34,6 +34,7 @@ <script type="text/javascript" src="js/jquery.bootstrap-growl.min.js"></script>
<script type="text/javascript" src="js/jquery.isloading.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.12.1.min.js"></script>
+ <script type="text/javascript" src="js/dialog-min.js"></script>
<link href="css/jquery-ui-1.12.1.min.css" rel="stylesheet" />
<script type="text/javascript" src="js/bootstrap-table-filter-control.min.js"></script>
<script type="text/javascript">
@@ -98,7 +99,7 @@ window.operateEvents = {
'click .siteDeleteImg': function (e, value, row, index) {
// TO DO ajex call for delete
- var result = deleteNe(row.id, row);
+ var result = deleteService(row.id, row);
}
};
@@ -601,7 +602,39 @@ <label class="openo-ellipsis " style="width: 100%; display: block; height: 20px;">Loopback</label>
</div>
</div>
-
+<div class="modal fade" id="progressDialog" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="false">
+ <div class="modal-dialog">
+ <div class="modal-content">
+ <div class="modal-header" style="margin-left:10px;margin-bottom:5px;">
+ <h4 class="modal-title" id="idProgressTitle" style="text-align:center;"></h4>
+ </div>
+ <div class="modal-body" style="margin-left:10px;margin-bottom:5px;margin-right:10px;">
+ <div class="progress">
+ <div id="progressbar" class="progress-bar" role="progressbar" style="width: 10%;">
+ <span id ="progressValue">0%</span>
+ </div>
+ </div>
+ <div id="progressContent"></div>
+ </div>
+ </div>
+ </div>
+</div>
+<div class="modal fade" id="errorDialog" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
+ <div class="modal-dialog">
+ <div class="modal-content">
+ <div class="modal-header">
+ <button type="button" class="close" data-dismiss="modal"
+ aria-hidden="true">×
+ </button>
+ <h4 class="modal-title" id="errorDialogTitle" style="text-align:center;"></h4>
+ </div>
+ <div class="modal-body" id = "errorDialogReason" style="margin-left:20px;margin-bottom:5px;margin-right:10px;"></div>
+ <div class="modal-footer">
+ <button type="button" class="btn btn-default" data-dismiss="modal">close</button>
+ </div>
+ </div>
+ </div>
+</div>
</body>
</html>
|