123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\controller\admin\user;
- use crmeb\basic\BaseController;
- use think\App;
- use app\common\repositories\user\FeedbackRepository as repository;
- class FeedBack extends BaseController
- {
- /**
- * @var UserRepository
- */
- protected $repository;
- /**
- * User constructor.
- * @param App $app
- * @param $repository
- */
- public function __construct(App $app, repository $repository)
- {
- parent::__construct($app);
- $this->repository = $repository;
- }
- /**
- * @return mixed
- * @author Qinii
- */
- public function lst()
- {
- $where = $this->request->params(['keyword', 'type', 'status','realname',['is_del',0]]);
- [$page, $limit] = $this->getPage();
- return app('json')->success($this->repository->getList($where, $page, $limit));
- }
- /**
- * @param $id
- * @return mixed
- * @author Qinii
- */
- public function detail($id)
- {
- if (!$this->repository->fieldExists('feedback_id',$id))
- return app('json')->fail('数据不存在');
- $feedback = $this->repository->get($id)->toArray();
- [$feedback['category'], $feedback['type']] = explode('/', $feedback['type'], 2);
- return app('json')->success($feedback);
- }
- /**
- * @param $id
- * @return mixed
- * @throws \think\db\exception\DbException
- * @author Qinii
- */
- public function reply($id)
- {
- if (!$this->repository->fieldExists('feedback_id',$id))
- return app('json')->fail('数据不存在');
- $data = $this->request->params(['reply', 'remake', ['status',0]]);
- $this->repository->update($id,$data);
- return app('json')->success('回复成功');
- }
- /**
- * @param $id
- * @return mixed
- * @author Qinii
- */
- public function delete($id)
- {
- if (!$this->repository->fieldExists('feedback_id',$id))
- return app('json')->fail('数据不存在');
- $this->repository->update($id,['is_del' => 1]);
- return app('json')->success('删除成功');
- }
- public function switchStatus($id)
- {
- $status = $this->request->param('status', 0) == 1 ? 1 : 0;
- if (!$this->repository->merExists($id))
- return app('json')->fail('数据不存在');
- $this->repository->update($id,['status' => $status]);
- return app('json')->success('修改成功');
- }
- }
|