attributes = get_params(); $from->store_id = get_store_id(); return $this->asJson($from->getFreight()); } //创建订单 public function actionCreateOrder() { $from = new OrderForm(); $from->attributes = all_params(); $from->store_id = get_store_id(); return $this->asJson($from->createOrder()); } }