attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerGoodsCateList()); } // 服务商品分类设置 public function actionWorkerGoodsCateSave() { $form = new WorkerGoodsCateForm(); $form->attributes = post_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerGoodsCateSave()); } // 服务商品分类状态修改 public function actionWorkerGoodsCateStatus() { $form = new WorkerGoodsCateForm(); $form->attributes = post_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerGoodsCateStatus()); } public function actionGoodsCateList() { $form = new WorkerGoodsCateForm(); $form->is_show = 1; $form->no_page = 1; $form->store_id = get_store_id(); return $this->asJson($form->workerGoodsCateList()); } }