删除分类
()
| 979 | |
| 980 | // 删除分类 |
| 981 | func (this *ManagerController) DelCate() { |
| 982 | var err error |
| 983 | if id, _ := this.GetInt("id"); id > 0 { |
| 984 | err = new(models.Category).Del(id) |
| 985 | } |
| 986 | if err != nil { |
| 987 | this.JsonResult(1, err.Error()) |
| 988 | } |
| 989 | this.JsonResult(0, "删除成功") |
| 990 | } |
| 991 | |
| 992 | // 更新分类的图标 |
| 993 | func (this *ManagerController) UpdateCateIcon() { |
nothing calls this directly
no test coverage detected