attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerOrderList()); } //服务订单详情 public function actionWorkerOrderInfo() { $form = new WorkerOrderForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerOrderInfo()); } //服务订单进度 public function actionWorkerOrderProgress() { $form = new WorkerOrderForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerOrderProgress()); } //服务订单取消 public function actionWorkerOrderCancel() { $form = new WorkerOrderForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerOrderCancel()); } //取消订单原因 public function actionWorkerOrderCancelReason() { $form = new WorkerOrderForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->workerOrderCancelReason()); } //获取订单单个商品信息 public function actionGetOrderGoodsInfo() { $form = new WorkerOrderForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->getOrderGoodsInfo()); } }