cms_menu.go 218 B

12345678910111213
  1. package admin
  2. import (
  3. "gfast/library/response"
  4. "github.com/gogf/gf/net/ghttp"
  5. )
  6. //cms栏目管理
  7. type CmsMenu struct{}
  8. func (c *CmsMenu) MenuList(r *ghttp.Request) {
  9. response.SusJson(true, r, "栏目列表")
  10. }