attributes = post_params(); $res = $form->AntMerchantExpandShopCreate(); return $this->asJson($res); } //获取门店信息 public function actionAntMerchantExpandShop() { $form = new AlipayThirdForm(); $form->attributes = post_params(); $res = $form->antMerchantExpandShop(); return $this->asJson($res); } //获取申请单信息 public function actionAntMerchantExpandOrder() { $form = new AlipayThirdForm(); $form->attributes = post_params(); $res = $form->antMerchantExpandOrder(); return $this->asJson($res); } //获取基础数据 public function actionGetShopBaseData() { $form = new AlipayThirdForm(); $form->attributes = post_params(); $res = $form->getBaseData(); return $this->asJson($res); } //创建推广活动 public function actionCreateMarketingDelivery() { $form = new AlipayThirdForm(); $form->attributes = post_params(); $res = $form->createMarketingDelivery(); return $this->asJson($res); } //获取数据 public function actionActivityDelivery() { $form = new AlipayThirdForm(); $form->attributes = post_params(); $res = $form->activityDelivery(); return $this->asJson($res); } //获取数据列表 public function actionActivityDeliveryList() { $form = new AlipayThirdForm(); $form->attributes = get_params(); $res = $form->activityDeliveryList(); return $this->asJson($res); } //停用推广计划 public function actionActivityDeliveryStop() { $form = new AlipayThirdForm(); $form->attributes = post_params(); $res = $form->activityDeliveryStop(); return $this->asJson($res); } }