zx/app/controller/api/user/Feedback.php

68 lines
2.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\controller\api\user;
use crmeb\basic\BaseController;
use app\common\repositories\user\FeedbackRepository;
use app\validate\api\FeedbackValidate;
use think\App;
class Feedback extends BaseController
{
protected $repository;
public function __construct(App $app, FeedbackRepository $repository)
{
parent::__construct($app);
$this->repository = $repository;
}
/**
* @param FeedbackValidate $validate
* @param FeedbackRepository $repository
* @return mixed
* @author xaboy
* @day 2020/5/28
*/
public function feedback(FeedbackValidate $validate)
{
$data = $this->request->params([['type',0], 'content', ['images', []], 'realname', 'contact',['status',0]]);
$validate->check($data);
$data['uid'] = $this->request->uid();
$FeedBack = $this->repository->create($data);
event('user.feedback',compact('FeedBack'));
return app('json')->success('反馈成功');
}
/**
* @return mixed
* @author xaboy
* @day 2020/5/28
*/
public function feedbackList()
{
[$page, $limit] = $this->getPage();
return app('json')->success($this->repository->getList(['uid' => $this->request->uid(),'is_del' => 0], $page, $limit));
}
public function detail($id)
{
if (!$this->repository->uidExists($id, $this->request->uid()))
return app('json')->fail('数据不存在');
$feedback = $this->repository->get($id);
return app('json')->success($feedback);
}
}