1234567891011121314151617181920212223242526272829 |
- /**
- * 查看
- */
- public function index()
- {
- // 设置过滤方法
- $this->request->filter(['strip_tags', 'trim']);
- // 如果是select则转发到select方法,若select未重写,其实还是继续执行index
- if ($this->request->param('select')) {
- $this->select();
- }
- list($where, $alias, $limit, $order) = $this->queryBuilder();
- $res = $this->model
- ->withJoin($this->withJoinTable, $this->withJoinType)
- ->alias($alias)
- ->where($where)
- ->order($order)
- ->paginate($limit);
- {%relationVisibleFieldList%}
- $this->success('', [
- 'list' => $res->items(),
- 'total' => $res->total(),
- 'remark' => get_route_remark(),
- ]);
- }
|