文档回收站
()
| 106 | |
| 107 | //文档回收站 |
| 108 | func (this *DocController) Recycle() { |
| 109 | p, _ := this.GetInt("p", 1) |
| 110 | //页码处理 |
| 111 | p = helper.NumberRange(p, 1, 10000) |
| 112 | listRows := this.Sys.ListRows |
| 113 | this.Data["Lists"], _, _ = models.NewDocumentRecycle().RecycleList(p, listRows) |
| 114 | this.Data["Tab"] = "recycle" |
| 115 | this.TplName = "recycle.html" |
| 116 | } |
| 117 | |
| 118 | //新增文库频道 |
| 119 | func (this *DocController) AddChanel() { |
nothing calls this directly
no test coverage detected