|
@@ -1788,6 +1788,12 @@
|
|
|
<label class="custom-control-label" for="sl_ignoreParent">计量台账-导入其他标段数据-忽略父项</label>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="form-group">
|
|
|
+ <div class="custom-control custom-checkbox mb-2">
|
|
|
+ <input type="checkbox" class="custom-control-input" id="sr_show" checked="">
|
|
|
+ <label class="custom-control-label" for="sr_show">关联台账</label>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="modal-footer">
|
|
|
<button type="button" class="btn btn-sm btn-secondary" data-dismiss="modal">取消</button>
|
|
@@ -1828,6 +1834,7 @@
|
|
|
|
|
|
const loadFunRelaProperty = function () {
|
|
|
$('#sl_ignoreParent')[0].checked = property.fun_rela.sum_load.ignoreParent;
|
|
|
+ $('#sr_show')[0].checked = property.fun_rela.stage_rela.show;
|
|
|
};
|
|
|
|
|
|
$('#bd-set-12').on('show.bs.modal', function () {
|
|
@@ -1838,6 +1845,9 @@
|
|
|
fun_rela: {
|
|
|
sum_load: {
|
|
|
ignoreParent: $('#sl_ignoreParent')[0].checked,
|
|
|
+ },
|
|
|
+ stage_rela: {
|
|
|
+ show: $('#sr_show')[0].checked,
|
|
|
}
|
|
|
},
|
|
|
};
|