Authored by liangyi.chen@yoho.cn

页面bug修复

... ... @@ -22,7 +22,7 @@
and word_type = #{wordType}
</if>
<if test="clientType != null">
and client_type = #{clientType}
and (client_type = #{clientType} or client_type = 2)
</if>
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
... ...
... ... @@ -12,7 +12,7 @@ redis.readonly.proxy.port=6379
redis.readonly.proxy.auth=
erp.domain=http://192.168.102.47:9098/erp-gateway-web
erp.domain=http://192.168.102.47:9098
# ******************** message ********************
... ...
... ... @@ -9,7 +9,7 @@
<td>
<select id="wordType" class="easyui-combobox" name="wordType"
style="margin-left: 10px;width: 200px ">
<option value="0" selected="selected">热搜词</option>
<option value="0">热搜词</option>
<option value="1">默认搜索词</option>
</select>
</td>
... ... @@ -67,7 +67,7 @@
$("#orderByTR").show();
}else {
$("#orderByTR").hide();
$('#orderBy').combobox('clear');
$('#orderBy').attr("value" , "");
}
}
}
... ...
... ... @@ -33,7 +33,6 @@
<option value="">选择展示平台</option>
<option value="0">APP</option>
<option value="1">小程序</option>
<option value="2">小程序、APP</option>
</select>
<select id="wordType" class="easyui-combobox" style="width:150px;" >
<option value="">选择搜索词类型</option>
... ...