getConfig(); return $this->success('获取成功',$result); } /** * @notes 设置配送方式配置 * @return \think\response\Json * @author ljj * @date 2021/8/2 5:09 下午 */ public function setConfig() { $params = (new DeliveryWayValidate())->post()->goCheck(); (new DeliveryWayLogic())->setConfig($params); return $this->success('设置成功',[],1,1); } }