|
@@ -33,6 +33,37 @@ class Lave extends Backend
|
|
|
{
|
|
|
parent::import();
|
|
|
}
|
|
|
+ public function index()
|
|
|
+ {
|
|
|
+ //设置过滤方法
|
|
|
+ $this->request->filter(['strip_tags', 'trim']);
|
|
|
+ if ($this->request->isAjax()) {
|
|
|
+ //如果发送的来源是Selectpage,则转发到Selectpage
|
|
|
+ if ($this->request->request('keyField')) {
|
|
|
+ $data = $this->selectpage()->getData();
|
|
|
+ return $data;
|
|
|
+ }
|
|
|
+ list($where, $sort, $order, $offset, $limit) = $this->buildparams();
|
|
|
+ /**
|
|
|
+ * 获取企业信息
|
|
|
+ */
|
|
|
+ if(is_array(is_sys_admin()))
|
|
|
+ {
|
|
|
+ $where[] = is_sys_admin();
|
|
|
+ }
|
|
|
+ $list = $this->model
|
|
|
+ ->where($where)
|
|
|
+ ->order($sort, $order)
|
|
|
+ ->paginate($limit);
|
|
|
+ foreach ($list as $k => $v) {
|
|
|
+ $v->hidden(['password', 'salt']);
|
|
|
+ }
|
|
|
+ $result = array("total" => $list->total(), "rows" => $list->items());
|
|
|
+
|
|
|
+ return json($result);
|
|
|
+ }
|
|
|
+ return $this->view->fetch();
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
|