diff --git a/FO/Views/Course/ApplyEdu.cshtml b/FO/Views/Course/ApplyEdu.cshtml
index 1a799f4..d874529 100644
--- a/FO/Views/Course/ApplyEdu.cshtml
+++ b/FO/Views/Course/ApplyEdu.cshtml
@@ -290,7 +290,7 @@
-
+
| *직위 |
@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();
}
});
|