data($result); } /** * @notes 分销配置 * @return \think\response\Json * @author Tab * @date 2021/7/22 9:42 */ public function setConfig() { $params = (new DistributionConfigValidate())->post()->goCheck(); DistributionConfigLogic::setConfig($params); return $this->success('设置成功'); } // 测试用 public function test() { DistributionOrderGoodsLogic::add(1); } }