|
@@ -1084,43 +1084,29 @@
|
|
|
s_matchkey_str = dataMap["s_globalclearkeymatch"]
|
|
|
|
|
|
}
|
|
|
-
|
|
|
if (s_matchkey_str) {
|
|
|
-
|
|
|
s_matchkey_list = s_matchkey_str.split(",")
|
|
|
-
|
|
|
for (index_ in s_matchkey_list) {
|
|
|
-
|
|
|
//定位button 添加属性
|
|
|
$("#btnGroupMatch").find("input").each(function () {
|
|
|
-
|
|
|
-
|
|
|
if ($(this).attr("code") == s_matchkey_list[index_]) {
|
|
|
if (matchCode.indexOf(s_matchkey_list[index_]) == -1) {
|
|
|
$(this).addClass("active-btn-match");
|
|
|
-
|
|
|
matchCode.push($(this).attr("code"));
|
|
|
matchName.push($(this).val())
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
});
|
|
|
$("#btnGroupMatch2").find("input").each(function () {
|
|
|
-
|
|
|
-
|
|
|
if ($(this).attr("code") == s_matchkey_list[index_]) {
|
|
|
if (matchCode.indexOf(s_matchkey_list[index_]) == -1) {
|
|
|
$(this).addClass("active-btn-match");
|
|
|
-
|
|
|
matchCode.push($(this).attr("code"));
|
|
|
matchName.push($(this).val())
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
});
|
|
|
-
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
$('#modal-select-match').modal("show");
|
|
|
} else {
|