档案模型
使用 @Power.ArchiveList()
方法,可调用模型类别为 “档案” 的内容列表。
档案标题列表.cshtml
组件路径
/Views/_Common/Shared/档案标题列表.cshtml
组件参数
参数名 | 中文名 | 类型 | 控件类型 | 默认值 |
---|---|---|---|---|
keyword | 搜索热词 | String | Text | |
TitleLength | 标题长度 | Int32 | Integer | 50 |
ShowNumber | 是否显示序号 | Boolean | Boolean | False |
NumberFormat | 序号的数字格式 | String | Text | 00 |
ShowNode | 是否显示所属节点 | Boolean | Boolean | False |
NodePrefix | 所属节点前插入字符 | String | ComboBox | [ |
NodeSuffix | 所属节点后插入字符 | String | ComboBox | ] |
ShowDate | 是否显示发布时间 | Boolean | Boolean | True |
DateFormat | 发布时间日期格式 | String | ComboBox | yyyy-MM-dd |
DateFollowTitle | 发布时间是否显示在标题后面 | Boolean | Boolean | False |
ShowRelation | 是否显示相关内容 | Boolean | Boolean | False |
RelationTagName | 相关内容标题 | String | Text | 相关内容 |
ShowHits | 是否显示点击数 | Boolean | Boolean | False |
HitsSuffix | 点击数后插入字符 | String | ComboBox | |
ShowLinkTip | 是否显示链接提示 | Boolean | Boolean | True |
HighlightDays | 多少天内的内容高亮显示 | Int32 | Integer | 0 |
LinkBlankTarget | 是否新窗口打开 | Boolean | Boolean | False |
调用示例
- 代码:
<div class="tableCon">
<table>
<tr>
<th>标题</th>
<th>文件编号</th>
<th>文号</th>
<th>密级</th>
<th>紧急程度</th>
<th>制文单位</th>
<th>承办处室</th>
<th>登记日期</th>
<th>下载</th>
</tr>
@Power.ArchiveList("档案标题列表", new { Paging = true, Node = Model, TitleLength = 80, DateFollowTitle = true, ShowRelation = true, RelationTagName = "相关内容", SearchType = @searchType, Keyword = @keyword, ArchiveCategory = @archiveCategoryId, Department = @departmentId, UndertakeOffice = @undertakeOfficeId, ArchiveDate = @archiveDate, ConfidentialityLevel = @confidentialityLevelId, EmergencyLevel = @emergencyLevelId })
</table>
</div>
说明: 略
效果图: