... ... @@ -114,7 +114,7 @@ public class HttpUriContants {
public static final String SWITCH_LB = "/lbswitch/switchConf";
/**
* lbswitch
* limitswitch
*/
public static final String VIEW_LIMIT_CONF = "/limitswitch/viewConf";
public static final String VIEW_TOCHANGE_LIMIT_CONF = "/limitswitch/viewToChangeLimitConf";
... ...
... ... @@ -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() + "'>&nbsp;&nbsp;";
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() + "'>&nbsp;&nbsp;";
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%;'>&nbsp;&nbsp;";
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
*/
... ...