|
@@ -625,20 +625,24 @@
|
|
|
<div class="modal-body">
|
|
|
<div class="form-group">
|
|
|
<div class="custom-control custom-checkbox mb-2">
|
|
|
- <input type="checkbox" class="form-check-input" id="ledger-dgn-qty" checked="">
|
|
|
- <label class="form-check-label" for="ledger-dgn-qty">项目节数量</label>
|
|
|
+ <input type="checkbox" class="custom-control-input" id="ledger-dgn-qty" checked="">
|
|
|
+ <label class="custom-control-label" for="ledger-dgn-qty">项目节数量</label>
|
|
|
</div>
|
|
|
<div class="custom-control custom-checkbox mb-2">
|
|
|
- <input type="checkbox" class="form-check-input" id="ledger-cl-qty" checked="">
|
|
|
- <label class="form-check-label" for="ledger-cl-qty">错漏增减</label>
|
|
|
+ <input type="checkbox" class="custom-control-input" id="ledger-cl-qty" checked="">
|
|
|
+ <label class="custom-control-label" for="ledger-cl-qty">错漏增减</label>
|
|
|
</div>
|
|
|
<div class="custom-control custom-checkbox mb-2">
|
|
|
- <input type="checkbox" class="form-check-input" id="thousandth" checked="">
|
|
|
- <label class="form-check-label" for="thousandth">千分位</label>
|
|
|
+ <input type="checkbox" class="custom-control-input" id="thousandth" checked="">
|
|
|
+ <label class="custom-control-label" for="thousandth">千分位</label>
|
|
|
</div>
|
|
|
<div class="custom-control custom-checkbox mb-2">
|
|
|
- <input type="checkbox" class="form-check-input" id="stage-rc" checked="">
|
|
|
- <label class="form-check-label" for="stage-rc">实际完成量</label>
|
|
|
+ <input type="checkbox" class="custom-control-input" id="stage-rc" checked="">
|
|
|
+ <label class="custom-control-label" for="stage-rc">实际完成量</label>
|
|
|
+ </div>
|
|
|
+ <div class="custom-control custom-checkbox mb-2">
|
|
|
+ <input type="checkbox" class="custom-control-input" checked="" id="stage-correct">
|
|
|
+ <label class="custom-control-label" for="stage-correct">使用数量纠正完成率</label>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -1307,6 +1311,7 @@
|
|
|
$('#ledger-cl-qty')[0].checked = property.display.ledger.clQty;
|
|
|
$('#thousandth')[0].checked = property.display.thousandth;
|
|
|
$('#stage-rc')[0].checked = property.display.stage.realComplete;
|
|
|
+ $('#stage-correct')[0].checked = property.display.stage.correct;
|
|
|
}
|
|
|
$('#bd-set-5').on('show.bs.modal', function () {
|
|
|
loadDisplayProperty();
|
|
@@ -1316,7 +1321,7 @@
|
|
|
display: {
|
|
|
ledger: { dgnQty: $('#ledger-dgn-qty')[0].checked, clQty: $('#ledger-cl-qty')[0].checked, },
|
|
|
thousandth: $('#thousandth')[0].checked,
|
|
|
- stage: { realComplete: $('#stage-rc')[0].checked, },
|
|
|
+ stage: { realComplete: $('#stage-rc')[0].checked, correct: $('#stage-correct')[0].checked },
|
|
|
},
|
|
|
};
|
|
|
const tenderId = window.location.pathname.split('/')[2];
|