Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ops
/
monitor-ui
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
bblu
8 years ago
Commit
f93f27cecb77d65bad5292875dae8256e4a970ba
1 parent
bcacaf3d
master
...
dev_addtag_ui
dev_autoscal_java
dev_config_center
dev_deploy_image_ui
dev_deploy_node
dev_deploy_uic_ui
dev_deploy_yohosearchservice
dev_dock_release_ui
dev_docker2_ui
dev_host_topo_ui
dev_linlong
dev_master
dev_mip_hbasesource
dev_mysql_ui
dev_nginx_checkbox
dev_nginx_ui
dev_sql分页
dev_store_ui
dev_switch_nginx
dev_ui_topo
feature/add-footer-div-20220127
ge_search_compare
monitor-ui-fyzh
monitor_ui
qcloudOnly
ralph
短信
修改
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
4 deletions
monitor-ui-common/src/main/java/com/ui/contants/HttpUriContants.java
monitor-ui-web/src/main/webapp/jsp/switch/limitSwitch.jsp
monitor-ui-common/src/main/java/com/ui/contants/HttpUriContants.java
View file @
f93f27c
...
...
@@ -114,7 +114,7 @@ public class HttpUriContants {
public
static
final
String
SWITCH_LB
=
"/lbswitch/switchConf"
;
/**
* l
b
switch
* l
imit
switch
*/
public
static
final
String
VIEW_LIMIT_CONF
=
"/limitswitch/viewConf"
;
public
static
final
String
VIEW_TOCHANGE_LIMIT_CONF
=
"/limitswitch/viewToChangeLimitConf"
;
...
...
monitor-ui-web/src/main/webapp/jsp/switch/limitSwitch.jsp
View file @
f93f27c
...
...
@@ -128,7 +128,15 @@
<script
src=
"<%=basePath %>script/common/genarate_left_panel.js"
type=
"text/javascript"
></script>
<script
type=
"text/javascript"
>
/**
* 对话框对象
*/
var
dialog1
,
dialog2
,
dialog3
,
dialog4
;
/**
* 按钮“调整”点击事件,打开设置对话框并初始化数据
*/
function
initSwitch
()
{
var
html
=
"<div><dl class='dl-horizontal'>"
;
html
+=
"<dt>open_limit_flow</dt>"
;
...
...
@@ -136,7 +144,7 @@
html
+=
"<br />"
;
html
+=
"<dt>limit_config</dt>"
;
html
+=
"<dd id='limit_config_a'><ul>"
;
html
+=
"<li style='padding: 5px;'><button class='btn btn-sm btn-success' onclick='addLi(this)'><em class='icon-cogs bigger-110'></em>新增</button></li>"
html
+=
"<li style='padding: 5px;'><button class='btn btn-sm btn-success' onclick='addLi(this)'><em class='icon-cogs bigger-110'></em>新增</button></li>"
;
$
(
"#limit_config"
).
find
(
"li"
).
each
(
function
()
{
html
+=
"<li style='padding: 5px;'><input type='text' class='form-control' style='width: 80%;' value='"
+
$
(
this
).
text
()
+
"'> "
;
html
+=
"<button class='btn btn-sm btn-success' onclick='delLi(this)'><em class='icon-cogs bigger-110'></em>删除</button>"
;
...
...
@@ -146,7 +154,7 @@
html
+=
"<br />"
;
html
+=
"<dt>limit_service_config</dt>"
;
html
+=
"<dd id='limit_service_config_a'><ul>"
;
html
+=
"<li style='padding: 5px;'><button class='btn btn-sm btn-success' onclick='addLi(this)'><em class='icon-cogs bigger-110'></em>新增</button></li>"
html
+=
"<li style='padding: 5px;'><button class='btn btn-sm btn-success' onclick='addLi(this)'><em class='icon-cogs bigger-110'></em>新增</button></li>"
;
$
(
"#limit_service_config"
).
find
(
"li"
).
each
(
function
()
{
html
+=
"<li style='padding: 5px;'><input type='text' class='form-control' style='width: 80%;' value='"
+
$
(
this
).
text
()
+
"'> "
;
html
+=
"<button class='btn btn-sm btn-success' onclick='delLi(this)'><em class='icon-cogs bigger-110'></em>删除</button>"
;
...
...
@@ -176,8 +184,12 @@
});
}
/**
* ajax提交编辑后的数据
*/
function
toSubmit
()
{
var
toSendAjaxFlag
=
false
;
var
openLimitFlow
=
$
(
"#open_limit_flow_a"
).
find
(
"input"
).
val
();
var
limitConfig
=
[];
$
(
"#limit_config_a"
).
find
(
"input"
).
each
(
function
()
{
...
...
@@ -209,6 +221,9 @@
}
}
/**
* 弹出调整后数据对话框
*/
function
viewToChangeSuccess
(
resp
)
{
$
(
dialog1
).
dialog
(
"hide"
);
...
...
@@ -239,10 +254,16 @@
});
}
/**
* 调整成功后,跳转首页
*/
function
switchSuccess
()
{
window
.
location
.
href
=
getUrlBasePath
()
+
"/limitSwitch/toLimitSwitch"
;
}
/**
* 增加配置项
*/
function
addLi
(
btn
)
{
var
html
=
"<li style='padding: 5px;'><input type='text' class='form-control' style='width: 80%;'> "
;
html
+=
"<button class='btn btn-sm btn-success' onclick='delLi(this)'><em class='icon-cogs bigger-110'></em>删除</button>"
;
...
...
@@ -250,6 +271,9 @@
$
(
btn
).
parent
().
parent
().
append
(
html
);
}
/**
* 删除配置项
*/
function
delLi
(
btn
)
{
$
(
btn
).
parent
().
remove
();
}
...
...
@@ -279,7 +303,7 @@
}
/**
*
提示函数
*
打开提示对话框
* @param title
* @param content
*/
...
...
Please
register
or
login
to post a comment