CRMEB/crmeb/app/adminapi/controller/v1/kefu/StoreServiceFeedback.php
2023-02-15 19:20:36 +08:00

112 lines
3.1 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~2023 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\adminapi\controller\v1\kefu;
use app\adminapi\controller\AuthController;
use app\services\kefu\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(100100);
}
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(400268);
}
$feedInfo->make = $data['make'];
if ($data['status']) {
$feedInfo->status = $data['status'];
}
$feedInfo->save();
return app('json')->success(100001);
}
/**
* 删除反馈
* @param $id
* @return mixed
* @throws \Exception
*/
public function delete($id)
{
if (!$id) {
return app('json')->fail(100100);
}
if ($this->services->delete($id)) {
return app('json')->success(100002);
} else {
return app('json')->fail(100008);
}
}
}