@ -13,6 +13,9 @@
<li>
专题活动名称:<input type="text" name="specialTitle"/>
</li>
所属栏目:<input type="text" name="columnName"/>
操作人员:<input type="text" name="createBy"/>
@ -64,6 +67,10 @@
field : 'specialTitle',
title : '专题活动名称'
},
{
field : 'columnName',
title : '所属栏目'
field: 'status',
title: '状态',
部门动态名称:<input type="text" name="trendsTitle"/>
@ -62,7 +65,11 @@
field : 'trendsTitle',
title : '文章名称'
title : '部门动态名称'
@ -37,6 +37,9 @@
<if test="trendsTitle != null and trendsTitle != ''">
AND trends_title like concat('%', #{trendsTitle}, '%')
</if>
<if test="columnName != null and columnName != ''">
AND column_name like concat('%', #{columnName}, '%')
<if test="createBy != null and createBy != ''">
AND create_by like concat('%', #{createBy}, '%')
@ -38,6 +38,9 @@
<if test="specialTitle != null and specialTitle != ''">
AND special_title like concat('%', #{specialTitle}, '%')