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

개인정보 확인 부분에서 '직위' 숨김처리
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> </ul>
</td> </td>
</tr> </tr>
<tr> <tr class="uduty">
<th>*직위</th> <th>*직위</th>
<td> <td>
@Html.TextBoxFor(x => x.User.uduty, new { @class = "apylpt", @maxlength = "20" }) @Html.TextBoxFor(x => x.User.uduty, new { @class = "apylpt", @maxlength = "20" })
@ -348,10 +348,12 @@
if ($("input:radio[name='isrebate']:checked").val() == "1") { if ($("input:radio[name='isrebate']:checked").val() == "1") {
$(".rbankInfo").show(); $(".rbankInfo").show();
$(".companyInfo").show(); $(".companyInfo").show();
$(".uduty").show();
} }
else { else {
$(".rbankInfo").hide(); $(".rbankInfo").hide();
$(".companyInfo").hide(); $(".companyInfo").hide();
$(".uduty").hide();
} }
}); });