해당과정: ① 온라인/혼합 ② 오프라인 중 비환급 선택 시

개인정보 확인 부분에서 '직위' 숨김처리
This commit is contained in:
lch 2021-05-03 04:50:20 +00:00
parent 171ae3e8ad
commit 74525284a0
1 changed files with 3 additions and 1 deletions

View File

@ -290,7 +290,7 @@
</ul>
</td>
</tr>
<tr>
<tr class="uduty">
<th>*직위</th>
<td>
@Html.TextBoxFor(x => x.User.uduty, new { @class = "apylpt", @maxlength = "20" })
@ -348,10 +348,12 @@
if ($("input:radio[name='isrebate']:checked").val() == "1") {
$(".rbankInfo").show();
$(".companyInfo").show();
$(".uduty").show();
}
else {
$(".rbankInfo").hide();
$(".companyInfo").hide();
$(".uduty").hide();
}
});