Your ROOT_URL in app.ini is http://git.zky.com/ but you are visiting http://61.178.84.89:8998/luoluo/ry_zhky/commit/16d86585442f795a46957b2d0db08bba98caea2f?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
20 additions and
5 deletions
@ -19,10 +19,19 @@
< label > 登记人员:< / label >
< input type = "text" name = "registName" > < / input >
< / li >
< li >
<!-- <li >
< label > 登记日期:< / label >
< input name = "registTime" required class = "form-control m-b" id = "datetimepicker-demo-3" type = "text" >
< / li > -->
< li class = "select-time" >
< label > 登记日期: < / label >
< input type = "text" class = "time-input" id = "startTime" placeholder = "开始时间" name = "params[beginTime]" / >
< span > -< / span >
< input type = "text" class = "time-input" id = "endTime" placeholder = "结束时间" name = "params[endTime]" / >
< / li >
< li >
< a class = "btn btn-primary btn-rounded btn-sm" onclick = "$.table.search()" > < i class = "fa fa-search" > < / i > 搜索< / a >
< a class = "btn btn-warning btn-rounded btn-sm" onclick = "$.form.reset()" > < i class = "fa fa-refresh" > < / i > 重置< / a >
@ -42,8 +42,11 @@
<if test= "caseType!=null and caseType!=''" >
AND case_type = #{caseType}
</if>
<if test= "caseTime!=null" >
AND case_time LIKE concat('%',#{caseTime},'%')
<if test= "params.beginTime != null and params.beginTime != ''" > <!-- 开始时间检索 -->
AND case_time > = #{params.beginTime}
</if>
<if test= "params.endTime != null and params.endTime != ''" > <!-- 结束时间检索 -->
AND case_time < = #{params.endTime}
</if>
<if test= "caseGrade!=null and caseGrade!=''" >
AND case_grade = #{caseGrade}
@ -39,8 +39,11 @@
<if test= "registName!=null and registName!=''" >
AND regist_name LIKE concat('%',#{registName},'%')
</if>
<if test= "registTime!=null" >
AND regist_time LIKE concat('%',#{registTime},'%')
<if test= "params.beginTime != null and params.beginTime != ''" > <!-- 开始时间检索 -->
AND regist_time > = #{params.beginTime}
</if>
<if test= "params.endTime != null and params.endTime != ''" > <!-- 结束时间检索 -->
AND regist_time < = #{params.endTime}
</if>
</trim>
ORDER BY create_time DESC