오류수정
This commit is contained in:
parent
8bba6ca7ee
commit
407bd71660
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue