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/api/controller/Feedback.php

83 lines
2.4 KiB

<?php
// +----------------------------------------------------------------------
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
// +----------------------------------------------------------------------
// | Author: 萤火科技 <admin@yiovo.com>
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\api\controller;
use app\common\model\store\StoreSettle;
use app\api\service\User as UserService;
use think\response\Json;
use app\api\model\Feedback as feedbackModel;
use app\common\model\UploadFile;
use app\common\model\Channel;
/**
* 意见反馈
* Class Store
* @package app\store\controller
*/
class Feedback extends Controller
{
/**
* @notes:新增文章
* @return Json
* @throws BaseException
* @author: wanghousheng
*/
public function add(): Json
{
if (!UserService::isStore()) {
throwError("无权限", 403);
}
$useInfo = UserService::getCurrentLoginUser(true);
$content = $this->request->post('content');
if (!$content) {
return $this->renderError('内容不能为空');
}
$cate = intval($this->request->post('cate'));
if (!$cate) {
return $this->renderError('分类不能为空');
}
$data = $this->postForm();
$data['merchant_id'] = $this->merchantId;
if ((new squareModel)->add($data)) {
return $this->renderSuccess('添加成功');
}
return $this->renderError('添加失败');
}
/**
* 列表
*/
public function list(): Json {
$model = new feedbackModel;
$params = $this->request->param();
$list = $model->getList($params)->toArray();
foreach ($list['data'] as $kr => $r) {
$res[$kr]['imgs'] = [];
if ($r['imgs']) {
$img_ids = explode(",", $r['imgs']);
$files = UploadFile::getFileList($img_ids);
$list['data'][$kr]['imgs'] = $files ?: null;
}
}
return $this->renderSuccess($list);
}
}