iedc-go/example/app/category.go

20 lines
238 B
Go
Raw Normal View History

2022-03-03 13:23:57 +00:00
package app
import (
2022-09-27 01:22:49 +00:00
. "../../../iedc-go"
. "../../common"
2022-03-03 13:23:57 +00:00
//"strings"
)
var Category = Ctr{
//获取列表
"list": func(this *Context) {
re := this.Db.Select("category", "*", Map{"parent_id": 1})
this.Display(0, re)
},
}