CRMEB/crmeb/app/adminapi/controller/v1/application/wechat/StoreServiceFeedback.php
2021-07-13 16:49:21 +08:00

112 lines
3.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~2020 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\adminapi\controller\v1\application\wechat;
use app\adminapi\controller\AuthController;
use app\services\message\service\StoreServiceFeedbackServices;
use think\facade\App;
/**
* 客服用户留言反馈
* Class StoreServiceFeedback
* @package app\adminapi\controller\v1\application\wechat
*/
class StoreServiceFeedback extends AuthController
{
/**
* StoreServiceFeedback constructor.
* @param App $app
* @param StoreServiceFeedbackServices $services
*/
public function __construct(App $app, StoreServiceFeedbackServices $services)
{
parent::__construct($app);
$this->services = $services;
}
/**
* 获取留言列表
* @return mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function index()
{
$where = $this->request->getMore([
['title', ''],
['time', '']
]);
return app('json')->success($this->services->getFeedbackList($where));
}
/**
* 获取修改表单
* @param $id
* @return mixed
* @throws \FormBuilder\Exception\FormBuilderException
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function edit($id)
{
if (!$id) {
return app('json')->fail('缺少参数');
}
return app('json')->success($this->services->editForm((int)$id));
}
/**
* 修改
* @param $id
* @return mixed
*/
public function update($id)
{
$data = $this->request->postMore([
['make', ''],
['status', 0],
]);
if (!$id || !($feedInfo = $this->services->get($id))) {
return app('json')->fail('反馈内容不存在');
}
$feedInfo->make = $data['make'];
if ($data['status']) {
$feedInfo->status = $data['status'];
}
$feedInfo->save();
return app('json')->success('修改成功');
}
/**
* 删除反馈
* @param $id
* @return mixed
* @throws \Exception
*/
public function delete($id)
{
if (!$id) {
return app('json')->fail('缺少参数');
}
if ($this->services->delete($id)) {
return app('json')->success('删除成功');
} else {
return app('json')->fail('删除失败');
}
}
}