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.6 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
{
7 months ago
$useInfo = UserService::getCurrentLoginUser(true)->toArray();
7 months ago
$suggest = $this->request->post('suggest');
if (!$suggest) {
return $this->renderError('内容不能为空');
}
7 months ago
$data = $this->postData();
$data['merchant_id'] = $this->merchantId;
7 months ago
$data['user_name'] = $useInfo['user_id'];
$data['real_name'] = $useInfo['nick_name'];
if ((new feedbackModel)->add($data)) {
return $this->renderSuccess('添加成功');
}
return $this->renderError('添加失败');
}
/**
* 列表
*/
public function list(): Json {
7 months ago
$pageSize = $this->request->param('pageSize');
$pageSize = empty($pageSize) ? 15 : $pageSize;
7 months ago
$useInfo = UserService::getCurrentLoginUser(true)->toArray();
$model = new feedbackModel;
$params = $this->request->param();
7 months ago
$params['userName'] = $useInfo['user_id'];
7 months ago
$list = $model->getList($params, intval($pageSize))->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);
}
}