...
|
...
|
@@ -36,7 +36,7 @@ class Dashboard extends Backend |
|
|
//报修总量
|
|
|
$BaoxiuArr = Db::name('baoxiudan')->select();
|
|
|
$BaoxiuWancheng = Db::name('baoxiudan')->where('type', 2)->select();
|
|
|
$Round = $BaoxiuArr / $BaoxiuWancheng;
|
|
|
$Round = round(count($BaoxiuArr) / count($BaoxiuWancheng) * 100, 2);
|
|
|
|
|
|
$this->view->assign([
|
|
|
'baoxiunum' => count($BaoxiuArr),
|
...
|
...
|
|