attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerList()); } // 服务人员设置 public function actionWorkerSave() { $form = new WorkerForm(); $form->attributes = post_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerSave()); } // 服务人员状态修改 public function actionWorkerStatus() { $form = new WorkerForm(); $form->attributes = post_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerStatus()); } //分配订单-服务人员列表 public function actionCanBindWorkerList() { $form = new WorkerForm(); $form->store_id = get_store_id(); $form->attributes = post_params(); return $this->asJson($form->canBindWorkerList()); } //分配订单 public function actionBindWorker() { $form = new WorkerForm(); $form->store_id = get_store_id(); $form->attributes = post_params(); return $this->asJson($form->bindWorker()); } //确认收款 public function actionOrderIsPay() { $form = new WorkerForm(); $form->store_id = get_store_id(); $form->attributes = post_params(); return $this->asJson($form->orderIsPay()); } //确认收货 public function actionOrderConfirm() { $form = new WorkerForm(); $form->store_id = get_store_id(); $form->attributes = post_params(); return $this->asJson($form->orderConfirm()); } //评价 public function actionCommentList() { $form = new WorkerForm(); $form->store_id = get_store_id(); $form->attributes = post_params(); return $this->asJson($form->commentList()); } //配置 public function actionSetting() { $form = new WorkerForm(); $form->store_id = get_store_id(); $form->attributes = post_params(); return $this->asJson($form->setting()); } //佣金列表 public function actionStoreWorkerProfitList() { $form = new WorkerForm(); $form->store_id = get_store_id(); $form->attributes = post_params(); return $this->asJson($form->storeWorkerProfitList()); } }