attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerList()); } //获取筛选信息 public function actionWorkerIndex() { $form = new WorkerForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerIndex()); } //获取服务人员信息 public function actionWorkerInfo() { $form = new WorkerForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerInfo()); } //获取服务商品详细信息 public function actionWorkerGoodsInfo() { $form = new WorkerForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerGoodsInfo()); } //获取商品分类列表 public function actionWorkerGoodsCateList() { $form = new WorkerForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerGoodsCateList()); } //获取商品分类列表 public function actionWorkerCateList() { $form = new WorkerForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerCateList()); } //获取服务商品列表 public function actionWorkerGoodsList() { $form = new WorkerForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerGoodsList()); } //获取服务人员可预约时间 public function actionWorkerTime() { $form = new WorkerForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerTime()); } }