likang 2 years ago
parent
commit
f29ee416c3

+ 1 - 0
catch/hydraulic/controller/Maintenance.php

@@ -105,4 +105,5 @@ class Maintenance extends CatchController
         return CatchResponse::success($list);
 
     }
+
 }

+ 2 - 3
catch/hydraulic/model/MaintenanceMapper.php

@@ -69,8 +69,7 @@ class maintenancemapper extends Model
        
         return (new SysDictData())->getValueByCode('Maintenance', $value) ?: '';
     }
-    /**
-     * 搜索属性
-     */
+  
+    
 
 }

+ 2 - 1
catch/hydraulic/route.php

@@ -21,4 +21,5 @@ $router->group(function () use ($router){
 	//获取维保记录映射
 	 $router->get('get_mainten_option', '\catchAdmin\hydraulic\controller\Maintenance@getMaintenOption');
 	$router->resource('maintenance_mapper', '\catchAdmin\hydraulic\controller\Maintenance');
-})->middleware('auth');
+})->middleware('auth');
+

+ 28 - 0
catch/worklocation/controller/WorkLocation.php

@@ -6,6 +6,7 @@ use catcher\base\CatchRequest as Request;
 use catcher\CatchResponse;
 use catcher\base\CatchController;
 use catchAdmin\worklocation\model\WorkLocation as workLocationModel;
+use think\facade\Db;
 
 class WorkLocation extends CatchController
 {
@@ -66,4 +67,31 @@ class WorkLocation extends CatchController
     {
         return CatchResponse::success($this->workLocationModel->deleteBy($id,true));
     }
+
+    //统计列表
+    public function getTotal(Request $request)
+    {
+       $device_model_list =Db::name('device_mold')->where('device_type',4)->select();
+       $array = [];
+     
+    //    fan_id 风机 id  风机编号
+       foreach($device_model_list as $item)
+       {   $worklist =[];
+           $where=[];
+           $ids =  Db::name('fan')->where('fan_model',$item["id"])->column('id');
+           $where[] =['fan_id','in',implode(",",$ids)];
+         
+           //创建时间 扭矩
+           //排序 从小到大
+            $list = $this->workLocationModel->where($where)->order('created_at','asc')->select();
+          
+            foreach($list as $it)
+            {
+                $worklist[] = [$it['created_at']=>$it['torque']];
+            }
+            $array[] =["name"=>$item['name'],'data'=>$worklist];
+       }
+       return CatchResponse::success($array,10000);
+
+    }
 }

+ 10 - 1
catch/worklocation/model/WorkLocation.php

@@ -11,7 +11,7 @@ class Worklocation extends Model
 
     use DataRangScopeTrait;
     // 表名
-    public $name = 'worklocation';
+    public $name = 'work_location';
     // 数据库字段映射
     public $field = array(
         'id',
@@ -149,6 +149,15 @@ class Worklocation extends Model
 //    {
 //        return $query->where('number', 'like', '%'.$value.'%');
 //    }
+  /**
+     * 统计属性
+     * 根据时间 压力和扭矩力线性图
+     */
+    public function getTotal()
+    {
+        
+        
+    }
 
 
 

+ 8 - 1
catch/worklocation/route.php

@@ -13,4 +13,11 @@
 $router->group(function () use ($router){
 	// workLocation路由
 	$router->resource('worklocation', '\catchAdmin\worklocation\controller\WorkLocation');
-})->middleware('auth');
+})->middleware('auth');
+//维保记录统计图标
+$router->group('WorkLocationChart', function () use ($router){
+    //维保记录 
+    $router->get('total','\catchAdmin\worklocation\controller\WorkLocation@getTotal'); 
+    
+})->middleware('auth');
+