//监听订单下拉框
form.on('select(orderId)', function (data) {
var orderId = data.value;
$("#equipId").html("");
if(!isNull(orderId)){
Comm.ajaxPost('${ctx}/***/*****/manage/list/equipList', {orderId: orderId}, function (res) {
if (res.success) {
//选择订单后交付日期重新渲染
$("#operTime").remove();
$("#openDate").html('<input type="text" class="layui-input" name="operTime" id="operTime" autocomplete="off"/>');
var dateInfo = res.data.deliveryTime.substring(0,10);
laydate.render({
elem: '#operTime', //指定元素
type: 'date',
max: dateInfo
});
$("#equipId").empty();
$("#equipId").append("<option value=''>请选择设备</option>");
$.each(res.data.equipList, function(idx, obj) {
$("#equipId").append("<option value="+obj.equipId+">"+obj.equipName+"</option>");
});
form.render('select');
}
});
}else {
$("#equipId").append("<option value=''>请选择设备</option>");
}
form.render('select');
});
重新设置laydate中最大值max
最新推荐文章于 2024-10-14 14:52:56 发布