attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->superSalesList()); } //参团列表 public function actionSuperSalesUserList() { $form = new IndexForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->superSalesUserList()); } //团长列表 public function actionSuperSalesSubList() { $form = new IndexForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->superSalesSubList()); } //直推奖列表 public function actionDirectAwardList() { $form = new IndexForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->directAwardList()); } //分红奖列表 public function actionDividendAwardList() { $form = new IndexForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->dividendAwardList()); } }