|
@@ -326,16 +326,24 @@ $('#other_setting').on('show.bs.modal', function () {
|
|
|
glj_col_setting.showAdjustPrice?$('#adjustPrice_cb').prop('checked',true): $('#adjustPrice_cb').prop('checked',false);
|
|
|
let isInstall = $("#isInstall").val() == 'true'?true:false;
|
|
|
$('#isInstall_cb').prop('checked',isInstall);
|
|
|
+ let isItemIncrease = $("#isItemIncrease").val() == 'true'?true:false;
|
|
|
+ $('#isItemIncrease_cb').prop('checked',isItemIncrease);
|
|
|
+ let isAreaIncrease = $("#isAreaIncrease").val() == 'true'?true:false;
|
|
|
+ $('#isAreaIncrease_cb').prop('checked',isAreaIncrease);
|
|
|
});
|
|
|
|
|
|
$('#other_setting_comf').click(function () {
|
|
|
let showAdjustPrice = $('#adjustPrice_cb').prop('checked');
|
|
|
let isInstall = $('#isInstall_cb').prop('checked');
|
|
|
+ let isItemIncrease = $('#isItemIncrease_cb').prop('checked');
|
|
|
+ let isAreaIncrease = $('#isAreaIncrease_cb').prop('checked');
|
|
|
let glj_col_setting = {
|
|
|
showAdjustPrice :showAdjustPrice
|
|
|
};
|
|
|
$("#glj_col").val(JSON.stringify(glj_col_setting));
|
|
|
$("#isInstall").val(isInstall);
|
|
|
+ $("#isItemIncrease").val(isItemIncrease);
|
|
|
+ $("#isAreaIncrease").val(isAreaIncrease);
|
|
|
});
|
|
|
|
|
|
$('#col-count').change(function () {
|