1.创建content.php控制器
//显示列表
public static function indexList($where,$field,$orderby,$limit,$page){
try{
$res = db('article')->field($field)->alias('a')->join('column b','a.a_columnid=b.c_id')->where($where)->order($orderby)->paginate(['list_rows'=>$limit,'page'=>$page]);
}catch(\Exception $e){
abort(config('my.error_log_code'),$e->getMessage());
}
return ['rows'=>$res->items(),'total'=>$res->total()];
}
2.前台:
{extend name='common/_container'} {block name="content"}
<style>
a {color:#666}
</style>
<div