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.
yanzong/app/store/controller/goods/Comment.php

80 lines
2.3 KiB

<?php
// +----------------------------------------------------------------------
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
// +----------------------------------------------------------------------
// | Author: 萤火科技 <admin@yiovo.com>
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\store\controller\goods;
use think\response\Json;
use app\store\controller\Controller;
use app\store\model\Comment as CommentModel;
/**
* 商品评价管理
* Class Comment
* @package app\store\controller\goods
*/
class Comment extends Controller
{
/**
* 评价列表
* @return Json
*/
public function list(): Json
{
$model = new CommentModel;
$list = $model->getList($this->request->param());
return $this->renderSuccess(compact('list'));
}
/**
* 评价详情
* @param int $commentId
* @return Json
*/
public function detail(int $commentId): Json
{
// 评价详情
$model = new CommentModel;
$detail = $model->getDetail($commentId);
return $this->renderSuccess(compact('detail'));
}
/**
* 编辑评价
* @param int $commentId
* @return Json
*/
public function edit(int $commentId): Json
{
// 评价详情
$model = CommentModel::detail($commentId);
// 更新记录
if ($model->edit($this->postForm())) {
return $this->renderSuccess('更新成功');
}
return $this->renderError($model->getError() ?: '更新失败');
}
/**
* 删除评价
* @param int $commentId
* @return Json
*/
public function delete(int $commentId): Json
{
// 评价详情
$model = CommentModel::detail($commentId);
if (!$model->setDelete()) {
return $this->renderError($model->getError() ?: '删除失败');
}
return $this->renderSuccess('删除成功');
}
}