iedc-go/app/category.go

20 lines
275 B
Go
Raw Normal View History

2022-10-30 15:44:05 +00:00
package app
import (
2022-10-30 17:18:19 +00:00
. "code.hoteas.com/golang/hotime"
. "code.hoteas.com/golang/hotime/common"
2022-10-30 15:44:05 +00:00
//"strings"
)
var Category = Ctr{
//获取列表
"list": func(this *Context) {
re := this.Db.Select("category", "*", Map{"parent_id": 1})
this.Display(0, re)
},
}