|
|
|
@ -62,25 +62,25 @@
|
|
|
|
|
<label for="inpNo"> 住院号:</label>
|
|
|
|
|
<input type="text" class="input-sm form-control" id="inpNo" placeholder="请输入住院号" maxlength="25">
|
|
|
|
|
</div>
|
|
|
|
|
<%-- <div class="form-group divCss8">--%>
|
|
|
|
|
<%-- <label for="visitId">住院次数:</label>--%>
|
|
|
|
|
<%-- <input type="number" class="input-sm form-control" min="1" id="visitId" placeholder="请输入次数"--%>
|
|
|
|
|
<%-- maxlength="2">--%>
|
|
|
|
|
<%-- </div>--%>
|
|
|
|
|
<div class="form-group divCss8">
|
|
|
|
|
<label for="visitId">住院次数:</label>
|
|
|
|
|
<input type="number" class="input-sm form-control" min="1" id="visitId" placeholder="请输入次数"
|
|
|
|
|
maxlength="2">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group divCss8">
|
|
|
|
|
<label for="name">姓名:</label>
|
|
|
|
|
<input type="text" class="input-sm form-control" id="name" placeholder="请输入姓名" maxlength="8">
|
|
|
|
|
</div>
|
|
|
|
|
<%-- <div class="form-group divCss8">--%>
|
|
|
|
|
<%-- <label>出院时间:</label>--%>
|
|
|
|
|
<%-- <div class="input-group input-daterange">--%>
|
|
|
|
|
<%-- <input type="text" class="input-sm form-control" name="start" id="startDateTo"--%>
|
|
|
|
|
<%-- maxlength="10" autocomplete="off"/>--%>
|
|
|
|
|
<%-- <span class="input-group-addon">-</span>--%>
|
|
|
|
|
<%-- <input type="text" class="input-sm form-control" name="end" id="endDateTo" maxlength="10"--%>
|
|
|
|
|
<%-- autocomplete="off"/>--%>
|
|
|
|
|
<%-- </div>--%>
|
|
|
|
|
<%-- </div>--%>
|
|
|
|
|
<div class="form-group divCss8">
|
|
|
|
|
<label>出院时间:</label>
|
|
|
|
|
<div class="input-group input-daterange">
|
|
|
|
|
<input type="text" class="input-sm form-control" name="start" id="startDateTo"
|
|
|
|
|
maxlength="10" autocomplete="off"/>
|
|
|
|
|
<span class="input-group-addon">-</span>
|
|
|
|
|
<input type="text" class="input-sm form-control" name="end" id="endDateTo" maxlength="10"
|
|
|
|
|
autocomplete="off"/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group divCss8">
|
|
|
|
@ -161,9 +161,12 @@
|
|
|
|
|
offset: offset, //页码
|
|
|
|
|
order: params.order, //排位命令(desc,asc)
|
|
|
|
|
inpNo: "" + $("#inpNo").val(),
|
|
|
|
|
visitId : "" + $("#visitId").val(),
|
|
|
|
|
startDate: $("#startDate").val(),
|
|
|
|
|
endDate: $("#endDate").val(),
|
|
|
|
|
name: "" + $("#name").val()
|
|
|
|
|
name: "" + $("#name").val(),
|
|
|
|
|
startDateTo: $("#startDateTo").val(),
|
|
|
|
|
endDateTo: $("#endDateTo").val(),
|
|
|
|
|
};
|
|
|
|
|
return temp;
|
|
|
|
|
},
|
|
|
|
@ -279,7 +282,11 @@
|
|
|
|
|
//刷新
|
|
|
|
|
$('#table').bootstrapTable('refresh');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//日期控件
|
|
|
|
|
$(".input-daterange").datepicker({
|
|
|
|
|
format: "yyyy-mm-dd",
|
|
|
|
|
language: "zh-CN"
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
</html>
|