一、设计报表标题
报表默认的标题是这样的
修改报表标题
预览效果如下:
二、设计报表内容
- 增加一个自由视图(你也可以在原有的视图中修改内容)
- 将刚才新建的Free 视图移动到最上面,将Use custom template text 改为“True”
- 然后在Custom template中 编写脚本(其中“T time”为限制元素的名称),示例如下:
@using Seal.Model
@using Seal.Helpers
@{
Report report = Model;
ReportView view = report.CurrentView;
ReportView modelView = report.CurrentModelView;
ReportModel reportModel = modelView.Model;
ResultPage page = report.CurrentPage;}
<!--获取条件的时间-->
<h5>
在<span>@reportModel.GetRestrictionByName("T time").Date1</span>到
<span>@reportModel.GetRestrictionByName("T time").Date2</span>期间的借书记录
</h5>
点击执行后效果如下
温馨提示,记得将视图选为你应用的那个,默认是使用View
更多的自定义设计,还需要继续研究,欢迎各位来交流~