作者 郭文星

123

... ... @@ -1429,10 +1429,9 @@ class Car extends Base
*/
public function set_out()
{
$where = ["type" => 1];
$indexList = [];
$itemArr = [];
$list = Db::name("route")->where($where)
$list = Db::name("route")
->select();
foreach ($list as $k => $v) {
$list[$k]['specificaddress'] = Db::name("specificaddress")->where("route_id", $list[$k]['id'])->select();
... ...