getBottomList()); } /** * 获取底部导航 * @return Response */ public function getBottomConfig() { return success(( new DiyConfigService() )->getBottomConfig()); } /** * 设置底部导航 * @return Response */ public function setBottomConfig() { $data = $this->request->params([ [ 'value', [] ], ]); ( new DiyConfigService() )->setBottomConfig($data[ 'value' ]); return success(); } }