attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->headUserList()); } //拼购区列表 public function actionAmountList() { $form = new GroupPurchaseForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->amountList()); } //分润订单 public function actionOrderAmountList() { $form = new GroupPurchaseForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->orderAmountList()); } //复购记录 public function actionOrderRepeatLog() { $form = new GroupPurchaseForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->orderRepeatLog()); } //公排列表 public function actionGroupList() { $form = new GroupPurchaseForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->groupList()); } }