Skip to content

Commit

Permalink
fix bug that sub rerviewer will not appear when change to another rer…
Browse files Browse the repository at this point in the history
…viewer
  • Loading branch information
chenmin committed Jan 21, 2019
1 parent 315a19e commit 3b34469
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/static/submitSql.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ <h4 class="panel-title">
</div>
<div id="collapseOne" class="panel-collapse
collapse">
<div class="panel-body" style="margin-left:
25px">
<div class="panel-body" id="sub_review_man_panel_body" style="margin-left:25px">
{% for man in reviewMen %}
<div class="radio" id="{{ man }}">
<input type="radio" id="radio1"
Expand Down Expand Up @@ -306,6 +305,7 @@ <h4 class="modal-title text-danger">提交信息确认</h4>

$("#review_man").change(function review_man() {
var review_man = $(this).val();
$("div#sub_review_man_panel_body").children(".radio").show();
$("div#" + review_man).hide();
});
</script>
Expand Down

0 comments on commit 3b34469

Please sign in to comment.