...
|
...
|
@@ -1434,7 +1434,9 @@ class Car extends Base |
|
|
$list = Db::name("route")
|
|
|
->select();
|
|
|
foreach ($list as $k => $v) {
|
|
|
$list[$k]['specificaddress'] = Db::name("specificaddress")->where("route_id", $list[$k]['id'])->select();
|
|
|
$list[$k]['specificaddress'] = Db::name("specificaddress")
|
|
|
->where("route_id", $list[$k]['id'])
|
|
|
->select();
|
|
|
}
|
|
|
$charArray = [];
|
|
|
if (!empty($list)) {
|
...
|
...
|
@@ -1633,4 +1635,14 @@ class Car extends Base |
|
|
->select();
|
|
|
$this->success("请求成功",$res);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
* @return void
|
|
|
*/
|
|
|
public function drivercancelorder(){
|
|
|
$order_id = $this->request->param("order_id");
|
|
|
$this->success("取消成功");
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|