// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\api\controller\dealer; use think\response\Json; use app\api\controller\Controller; use app\api\model\dealer\Capital as CapitalModel; /** * 分销商佣金 * Class Order * @package app\api\controller\user\dealer */ class Capital extends Controller { /** * 分销商佣金列表 * @return Json * @throws \cores\exception\BaseException * @throws \think\db\exception\DbException */ public function list(): Json { // 分销商订单列表 $model = new CapitalModel; $list = $model->getList($this->request->param(),$this->request->storeId()); return $this->renderSuccess(compact('list')); } }