// +---------------------------------------------------------------------- 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\Square as squareModel; use app\api\model\Squarelike as squarelikeModel; use app\common\model\UploadFile; use app\common\model\Channel; /** * 广场动态 * Class Store * @package app\store\controller */ class Square 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 squareModel; $list = $model->getList($this->request->param())->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); } public function dynamicLike(int $id): Json { if (!UserService::isStore()) { throwError("无权限", 403); } $useInfo = UserService::getCurrentLoginUser(true); $model = new squarelikeModel; $detail = squarelikeModel::detail($id, $useInfo['data']['user_name']); $data = $this->postForm(); if (empty($detail)) { if ($model->add($data)) { return $this->renderSuccess('操作成功'); } } else { $data['squarelike_id'] = $detail['squarelike_id']; if ($detail->delete($data)) { return $this->renderSuccess('操作成功'); } } } }