1、后台的一些bug修复

2、内核更新
3、后台的扩展模型做了一点更新一点,还不够完善
This commit is contained in:
2016-07-19 14:08:00 +08:00
parent 124745c341
commit 783369c9e4
26 changed files with 492 additions and 238 deletions

View File

@@ -96,7 +96,10 @@ class Content extends Fornt{
}
$cate = $this->getCategory($id);
$map = array();
$category = get_category_child($id);
$map = array(
'category_id' => array('IN', $category)
);
$order = "id desc";
$list = model('Document')->where($map)->order($order)->paginate(15);