|
@@ -1607,6 +1607,10 @@
|
|
|
<input type="checkbox" class="custom-control-input" id="lc_sibling" checked="">
|
|
|
<label class="custom-control-label" for="lc_sibling">项目节清单同层次</label>
|
|
|
</div>
|
|
|
+ <div class="custom-control custom-checkbox mb-2">
|
|
|
+ <input type="checkbox" class="custom-control-input" id="lc_over" checked="">
|
|
|
+ <label class="custom-control-label" for="lc_over">超计判断</label>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="modal-footer">
|
|
@@ -1624,6 +1628,7 @@
|
|
|
const loadLedgerCheckProperty = function () {
|
|
|
$('#lc_same_code')[0].checked = property.ledger_check.same_code;
|
|
|
$('#lc_sibling')[0].checked = property.ledger_check.sibling;
|
|
|
+ $('#lc_over')[0].checked = property.ledger_check.over;
|
|
|
}
|
|
|
$('#bd-set-10').on('show.bs.modal', function () {
|
|
|
loadLedgerCheckProperty();
|
|
@@ -1633,6 +1638,7 @@
|
|
|
ledger_check: {
|
|
|
same_code: $('#lc_same_code')[0].checked,
|
|
|
sibling: $('#lc_sibling')[0].checked,
|
|
|
+ over: $('#lc_over')[0].checked,
|
|
|
},
|
|
|
};
|
|
|
const tenderId = window.location.pathname.split('/')[2];
|