You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
2 weeks ago
|
<?php
|
||
|
namespace app\api\controller\wanlshop;
|
||
|
|
||
|
use app\common\controller\Api;
|
||
|
|
||
|
/**
|
||
|
* WanlShop 反馈接口
|
||
|
*/
|
||
|
class Feedback extends Api
|
||
|
{
|
||
|
protected $noNeedLogin = [];
|
||
|
protected $noNeedRight = ['*'];
|
||
|
|
||
|
public function _initialize()
|
||
|
{
|
||
|
parent::_initialize();
|
||
|
$this->model = new \app\api\model\wanlshop\Feedback;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 反馈列表
|
||
|
*/
|
||
|
public function lists()
|
||
|
{
|
||
|
//设置过滤方法
|
||
|
$this->request->filter(['strip_tags']);
|
||
|
$list = $this->model
|
||
|
->where('user_id', $this->auth->id)
|
||
|
->order('createtime desc')
|
||
|
->paginate();
|
||
|
$this->success('ok',$list);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 反馈新增、读取
|
||
|
*/
|
||
|
public function add()
|
||
|
{
|
||
|
//设置过滤方法
|
||
|
$this->request->filter(['strip_tags']);
|
||
|
if ($this->request->isPost()) {
|
||
|
$params = $this->request->post();
|
||
|
$params['user_id'] = $this->auth->id;
|
||
|
$data = $this->model->allowField(true)->save($params);
|
||
|
$data? $this->success('ok',$data) : $this->error(__('服务器繁忙'));
|
||
|
}
|
||
|
$list = $this->model
|
||
|
->where('user_id', $this->auth->id)
|
||
|
->order('createtime desc')
|
||
|
->paginate();
|
||
|
$this->success('ok',$list);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|