Commit aa2c5f94 authored by 黄奎's avatar 黄奎

页面修改

parent 78b54f99
...@@ -54,6 +54,10 @@ namespace Mall.Repository.User ...@@ -54,6 +54,10 @@ namespace Mall.Repository.User
{ {
builder.AppendFormat(" AND NavIconName LIKE '{0}%' ", query.NavIconName.Trim()); builder.AppendFormat(" AND NavIconName LIKE '{0}%' ", query.NavIconName.Trim());
} }
if (query.NavIconIsShow != null && query.NavIconIsShow > -1)
{
builder.AppendFormat(" AND NavIconIsShow={0} ", query.NavIconIsShow);
}
} }
builder.Append(" ORDER BY NavIconSort ASC "); builder.Append(" ORDER BY NavIconSort ASC ");
return GetPage<RB_MiniProgram_Navicon_Extend>(pageIndex, pageSize, out rowCount, builder.ToString()).ToList(); return GetPage<RB_MiniProgram_Navicon_Extend>(pageIndex, pageSize, out rowCount, builder.ToString()).ToList();
......
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