Commit b913bc74 authored by 徐州's avatar 徐州

新增来源筛选字段

parent c9323f5f
Pipeline #13214 failed with stages
......@@ -432,9 +432,21 @@
</option>
</select>
平台人:<input style="width: 8rem;border: 1px solid #d5d5d5;" type="text" id="search_LIKE_createrName"
name="search_LIKE_createrName" value="${param['search_LIKE_createrName']}"
class="m-wrap small" placeholder="请输入添加人姓名">&nbsp;
平台人:<input style="width: 8rem;border: 1px solid #d5d5d5;" type="text" id="search_LIKE_createrName"
name="search_LIKE_createrName" value="${param['search_LIKE_createrName']}"
class="m-wrap small" placeholder="请输入添加人姓名">&nbsp;
活动来源:
<select width: 6rem name="search_EQ_actSource" id="search_EQ_actSource">
<c:forEach items="${sources}" var="source">
<option value="${source.sourceName}"
<c:if test="${source.sourceName eq param['search_EQ_actSource']}">selected="selected"</c:if>>${source.sourceName}</option>
</c:forEach>
</select>
<div style="float: right">
<button type="button" class="btn btn-default"
onclick="$('#filterForm').submit();">搜索
......@@ -1164,6 +1176,9 @@
// 重置是否星标下拉框
$("#search_EQ_isPtStar").val("1");
$("#search_EQ_isPtStar").trigger('chosen:updated');
// 重置活动来源
$("#search_EQ_actSource").val("");
$("#search_EQ_actSource").trigger('chosen:updated');
// 重置添加时间 近7天 开始时间结束时间
createTimeClick('0');
......
......@@ -4,7 +4,7 @@ jdbc.url=jdbc:mysql://192.168.105.101:3306/house365_hgs_online?useUnicode=true&c
jdbc.username=root
jdbc.maxIdle=30
jdbc.minIdle=25
jdbc.password=idontcare
jdbc.password=root
#jdbc.password=root
jdbc.maxWait=1000
jdbc.driverClassName=com.mysql.jdbc.Driver
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment