// +---------------------------------------------------------------------- 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 { $useInfo = UserService::getCurrentLoginUser(true)->toArray(); $suggest = $this->request->post('suggest'); if (!$suggest) { return $this->renderError('内容不能为空'); } $data = $this->postData(); $data['merchant_id'] = $this->merchantId; $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 { $pageSize = $this->request->param('pageSize'); $pageSize = empty($pageSize) ? 15 : $pageSize; $useInfo = UserService::getCurrentLoginUser(true)->toArray(); $model = new feedbackModel; $params = $this->request->param(); $params['userName'] = $useInfo['user_id']; $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); } }