...
|
...
|
@@ -315,8 +315,6 @@ class Car extends Base |
|
|
{
|
|
|
$res = Db::name("driver")->where("user_id", $this->auth->id)->find();
|
|
|
$car = Db::name("car")->where("driver_id", $res['id'])->find();
|
|
|
print_r($car);
|
|
|
return;
|
|
|
if ($car) {
|
|
|
//本月收入
|
|
|
$revenue_mon = sprintf('%.2f', Db::name("order")
|
...
|
...
|
|