오류수정

This commit is contained in:
lch 2021-05-21 07:16:08 +00:00
parent 8bba6ca7ee
commit 407bd71660
1 changed files with 4 additions and 6 deletions

View File

@ -414,7 +414,7 @@
setScd(); setScd();
}); });
$("input:radio[name='isrebate']").change(function () { $("input:radio[name='isrebate']").on("click",function () {
if ($(this).val() == "1") { if ($(this).val() == "1") {
$(".div-isCompany").hide(); $(".div-isCompany").hide();
$(".div-rbankInfo").show(); $(".div-rbankInfo").show();
@ -431,7 +431,7 @@
} }
}); });
$("input:radio[name='isaccommodation']").change(function () { $("input:radio[name='isaccommodation']").on("click",function () {
var total; var total;
if ($(this).val() == "1") { if ($(this).val() == "1") {
total = model.cm.infee + model.cm.accommofee; total = model.cm.infee + model.cm.accommofee;
@ -501,11 +501,9 @@
} }
if (model.assign.asno == 0) { if (model.assign.asno == 0) {
$("#btnassign").show(); $("#btnassign").show();
$(".div-companyInfo").hide();
} else { } else {
$("#btnassign").hide(); $("#btnassign").hide();
$(".div-companyInfo").show();
} }
} }
function bindassign(v) { function bindassign(v) {