提交修改

pg_adapter
dshclm 6 months ago
parent 954aa71313
commit 408c6db955

@ -37,9 +37,9 @@
<label class="col-sm-2 control-label is-required">使用时间:</label>
<div class="col-sm-10">
<div id="mentsTime" class="input-daterange input-group ">
<input type="text" class="input-sm form-control" th:value="${#dates.format(tdCarrierIssued.mentsTime, 'yyyy-MM-dd')}" required name="mentsTime" id="laydate-startTime" placeholder="开始时间"/>
<input type="text" class="input-sm form-control" required name="mentsTime" id="laydate-startTime" placeholder="开始时间"/>
<span class="input-group-addon"></span>
<input type="text" class="input-sm form-control" th:value="${#dates.format(tdCarrierIssued.mentsendTime, 'yyyy-MM-dd')}" required name="mentsendTime" id="laydate-endTime" placeholder="结束时间"/>
<input type="text" class="input-sm form-control" required name="mentsendTime" id="laydate-endTime" placeholder="结束时间"/>
</div>
</div>
</div>
@ -155,6 +155,13 @@
}
});
});
$('#mentsTime').parents(".row").hide();
if ($("#expirationTime").val() !== '' && $("#expirationTime").val() == '2'){
$('#mentsTime').parents(".row").hide();
}
if ($("#expirationTime").val() == '1'){
$('#mentsTime').parents(".row").show();
}
$('#expirationTime').change(function() {
var selectedValue = $(this).val();
var mentsTimeDiv = $('#mentsTime').parents(".row");
@ -164,6 +171,8 @@
}
if (selectedValue === '2'){
mentsTimeDiv.hide();
$('#laydate-startTime').val('');
$('#laydate-endTime').val('');
}
});
</script>

Loading…
Cancel
Save