request->get('type', 1); $data = (new DecorateThemeConfigLogic)->getContent($type); return $this->success('', $data); } /** * @notes 设置装修 * @return \think\response\Json * @author cjhao * @date 2021/8/4 20:40 */ public function setContent() { $params = $this->request->post(); (new DecorateThemeConfigLogic)->setContent($params); return $this->success('操作成功',[],1,1); } }