| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 | <?phpnamespace app\admin\controller;use app\admin\controller\base\Permissions;use think\Db;class Feedback extends Permissions{    private function getModel()    {        return new \app\common\model\Feedback();    }    public function index()    {        if ($this->request->isAjax()) {            $post = $this->request->param();            $where = [];            if (isset($post['ids']) and !empty($post['ids'])) {                $where['id'] = ['in', $post['ids']];            }            if (!empty($post["content"])) {                $where["content"] = ['like', '%' . $post["content"] . '%'];            }            if (isset($post["user_id"]) and "" != $post["user_id"]) {                $where["user_id"] = $post["user_id"];            }            if (isset($post["create_time"]) and !empty($post["create_time"])) {                $timerang = explode(' - ', $post["create_time"]);                $min_time = strtotime($timerang[0]);                $max_time = $timerang[0] == $timerang[1] ? $min_time + 24 * 3600 - 1 : strtotime($timerang[1]??'');                $where["create_time"] = [['>=', $min_time], ['<=', $max_time]];            }            $model = $this->getModel();            $count = $model->where($where)->count();            $data = $model->where($where)->page($post['page']??0, $post['limit']??15)->order('id desc')->select();            return array('code' => 0, 'count' => $count, 'data' => $data);        } else {            return $this->fetch();        }    }    public function delete()    {        if ($this->request->isAjax()) {            $id = $this->request->param('id', 0, 'intval');            if (false == $this->getModel()->where('id', $id)->delete()) {                $this->error('删除失败');            } else {                $this->success('删除成功', 'index');            }        }    }    public function deletes()    {        if ($this->request->isAjax()) {            $post = $this->request->param();            $ids = $post['ids'];            if ($this->getModel()->where('id', 'in', $ids)->delete()) {                $this->success('删除成功');            }        }    }}
 |