便民咨询类
咨询列表.cshtml
组件路径
/Views/_Common/LetterBox/Shared/咨询列表.cshtml
组件参数
参数名 | 中文名 | 类型 | 控件类型 | 默认值 |
---|---|---|---|---|
DateFormats | 日期格式 | String | Text | |
OutCount | 输出数 | Int32 | Integer | 10 |
TitleLength | 标题长度 | Int32 | Integer | 50 |
调用示例
- 代码:
<table class="letterList">
<thead>
<tr>
<th class="num">编号</th>
<th class="ico"> </th>
<th class="title">信件主题</th>
<th class="dep">提交人</th>
<th class="state">办理情况</th>
<th class="date">信件日期</th>
</tr>
</thead>
<tbody>
@Power.Partial("LetterBox", "咨询列表", new { DateFormats = "MM-dd", OutCount = 5, TitleLength = 74 })
</tbody>
</table>
说明: 略
效果图:
公开咨询列表.cshtml
组件路径
/Views/_Common/LetterBox/Shared/公开咨询列表.cshtml
组件参数
参数名 | 中文名 | 类型 | 控件类型 | 默认值 |
---|---|---|---|---|
DateFormats | 日期格式 | String | Text | |
OutCount | 输出数 | Int32 | Integer | 10 |
TitleLength | 标题长度 | Int32 | Integer | 50 |
调用示例
- 代码:
@Power.Partial("LetterBox", "公开咨询列表", new { DateFormats = "yyyy-MM-dd", OutCount = 5, TitleLength = 60 })
说明: 略
效果图:
分类咨询列表.cshtml
组件路径
/Views/_Common/LetterBox/Shared/分类咨询列表.cshtml
组件参数
参数名 | 中文名 | 类型 | 控件类型 | 默认值 |
---|---|---|---|---|
Count | 输出数 | Int32 | Integer | 10 |
Id | 信件分类Id | Int32 | Integer | |
Keyword | 搜索热词 | String | Text | |
FromIndex | 表单索引 | Boolean | Boolean | False |
调用示例
- 代码:
@Power.Partial("LetterBox", "分类咨询列表", new { Id = 1, Count = 5, FromIndex = true })
说明: 略
效果图:
咨询回复统计.cshtml
组件路径
/Views/_Common/LetterBox/Shared/咨询回复统计.cshtml
组件参数
参数名 | 中文名 | 类型 | 控件类型 | 默认值 |
---|---|---|---|---|
CategoryId | 分类ID | Int32 | Integer | 0 |
IsContainChildCategories | 是否包含子分类 | Boolean | Boolean | True |
Interval | 统计时间间隔 | Int32 | Integer | 0 |
调用示例
- 代码:
@Power.Partial("咨询回复统计", new { CategoryId = 1 })
说明: 略
效果图: