...
|
...
|
@@ -93,6 +93,9 @@ class Car extends Base |
|
|
{
|
|
|
$number = $this->request->param("number");//乘车人数
|
|
|
$phone = $this->request->param("phone");//联系手机号码
|
|
|
$starting_point = $this->request->param("starting_point");//出发位置
|
|
|
$end_point = $this->request->param("end_point");//到达位置
|
|
|
$passengers = $this->request->param("passengers");//乘车人
|
|
|
$user_name = $this->request->param("user_name");//联系人
|
|
|
$position = $this->request->param("position");//上车地址
|
|
|
$specificaddress_id = $this->request->param("specificaddress_id");//上车地址
|
...
|
...
|
@@ -154,6 +157,9 @@ class Car extends Base |
|
|
$data = [
|
|
|
"order_no" => getOrderSn(),
|
|
|
"price" => $price,
|
|
|
"starting_point" => $starting_point,//未支付
|
|
|
"end_point" => $end_point,//未支付
|
|
|
"passengers" => $passengers,//未支付
|
|
|
"is_pay" => "2",//未支付
|
|
|
"car_id" => $car_id,
|
|
|
"order_review_id" => $order_review_id,
|
...
|
...
|
@@ -1134,6 +1140,9 @@ class Car extends Base |
|
|
$route_id = $this->request->param("route_id");//线路
|
|
|
$position = $this->request->param("position");//上车地址
|
|
|
$lat = $this->request->param("lat");//经度
|
|
|
$starting_point = $this->request->param("starting_point");//出发位置
|
|
|
$end_point = $this->request->param("end_point");//到达位置
|
|
|
$passengers = $this->request->param("passengers");//乘车人
|
|
|
$specificaddress_id = $this->request->param("specificaddress_id");//区域id
|
|
|
$lng = $this->request->param("lng");//维度
|
|
|
$number = $this->request->param("number");//乘车人数
|
...
|
...
|
@@ -1181,6 +1190,9 @@ class Car extends Base |
|
|
"order_no" => getOrderSn(),
|
|
|
"price" => $price,
|
|
|
"position" => $position,
|
|
|
"starting_point" => $starting_point,
|
|
|
"end_point" => $end_point,
|
|
|
"passengers" => $passengers,
|
|
|
"driver_id" => $driver['id'],
|
|
|
"is_qrcode" => $is_qrcode,
|
|
|
"order_review_id" => $order_review_id,
|
...
|
...
|
@@ -1202,6 +1214,9 @@ class Car extends Base |
|
|
"order_no" => getOrderSn(),
|
|
|
"price" => $price,
|
|
|
"position" => $position,
|
|
|
"starting_point" => $starting_point,
|
|
|
"end_point" => $end_point,
|
|
|
"passengers" => $passengers,
|
|
|
"is_qrcode" => $is_qrcode,
|
|
|
"specificaddress_id" => $specificaddress_id,
|
|
|
"reservation_time" => $reservation_time,
|
...
|
...
|
|