likang 2 anni fa
parent
commit
1169422bc3

+ 79 - 1
app/common.php

@@ -3,6 +3,11 @@
 use think\facade\Env;
 use think\facade\Db;
 use Aliyun\OTS\OTSClient;
+use app\Request;
+use catcher\base\CatchRequest;
+use catcher\CatchResponse;
+use catcher\generate\build\types\Arr;
+use PhpOffice\PhpSpreadsheet\IOFactory;
 
 /**
  * 增量解析含wifi信号Gps
@@ -354,5 +359,78 @@ function msectime()
  */
 function optimize_json($tempResult)
 {
-    return  preg_replace('/[\x00-\x1F\x80-\x9F]/u', '', trim($tempResult));
+    return mb_convert_encoding($tempResult, 'UTF-8', 'UTF-8');;
+}
+
+/**
+ * 导入excel表  公用方法
+ * 
+ */
+/**
+ * @Descripttion: 
+ * @name: likang
+ * @param {CatchRequest} $request
+ * @param {*} $map [[key=>'e','value'=>'属性']]
+ * @param  $model 数据库模型
+ * @return {*}
+ */
+function importExcel(CatchRequest $request, $map, $model, $func)
+{
+    $url = $request->post('url');
+    if (!$url) {
+        return CatchResponse::fail('请上传文件');
+    }
+
+    $creator_id = $request->post('creator_id');
+    //解析地址
+    $parse_url = parse_url($url)['path'];
+    //载入excel表格 
+    $objPHPExcel = IOFactory::load(public_path() . $parse_url);
+    // var_dump($objPHPExcel);
+    //获取表名,一维数组,值是表名。如:array('sheet1', 'sheet2', 'sheet3')
+    // $nameArr = $objPHPExcel->getSheetNames();
+    // var_dump($nameArr);
+    //获取表的数量
+    $sheetCount = $objPHPExcel->getSheetCount();
+    $fail = 0; //失败条数
+    $success = 0; //成功条数
+    $total = 0; //总导入数
+    $excel_data = [];
+    //循环读取每一张表
+    for ($index = 0; $index < $sheetCount; $index++) {
+        //设置当前要读取的表
+        $sheet = $objPHPExcel->getSheet($index);   //excel中的第一张sheet
+        // var_dump($sheet);exit;
+        $highestRow  = $sheet->getHighestRow();       // 取得总行数
+        // var_dump($highestRow);
+        if ($highestRow <= 2) {
+            continue;
+        }
+        $total += $highestRow - 3;
+        for ($j = 4; $j <= $highestRow - 1; $j++) {
+
+            $data = array(); //每条门店信息
+
+            foreach ($map as $item) {
+
+                $data[$item['value']] = trim($sheet->getCell($item['key'] . $j)->getFormattedValue());
+            }
+            $data = $func($data);
+            //校验数据是否重复
+            if (!$data) {
+                continue;
+            }
+            array_push($excel_data, $data);
+        }
+    }
+
+    // var_dump($excel_data);
+    // return CatchResponse::success();
+    //防止Excel有重复,去重
+    array_unique($excel_data, SORT_REGULAR);
+    if ($count = $model->limit(100)->insertAll($excel_data)) {
+        return CatchResponse::success('共' . $total . '条数据,成功' . $count . '条,失败' . $fail . '条');
+    }
+    return CatchResponse::success(['error' => true, 'msg' => '导入失败']);
+    // return CatchResponse::success('共' . $total . '条数据,成功' . $success . '条,失败' . $fail . '条');
 }

+ 15 - 3
catch/api/controller/Api.php

@@ -29,7 +29,11 @@ class Api extends CatchController
         if (!$token || $token != '22723927C') {
             json_fail('缺少token或者token不对');
         }
-        $param = json_decode(file_get_contents("php://input"), true);
+        $param = json_decode(optimize_json(file_get_contents("php://input")), true);
+
+        if (json_last_error() != 0) {
+            json_fail('解析异常', json_last_error_msg());
+        }
 
         //校验imei是否存在
         if (!isset($param['IMEI']) ||  $param['IMEI'] == '') {
@@ -63,7 +67,11 @@ class Api extends CatchController
         if (!$token || $token != '22723927C') {
             json_fail('缺少token或者token不对');
         }
-        $param = json_decode(file_get_contents("php://input"), true);
+        $param = json_decode(optimize_json(file_get_contents("php://input")), true);
+
+        if (json_last_error() != 0) {
+            json_fail('解析异常', json_last_error_msg());
+        }
 
         //校验imei是否存在
         if (!isset($param['IMEI']) ||  $param['IMEI'] == '') {
@@ -96,7 +104,11 @@ class Api extends CatchController
         if (!$token || $token != '22723927C') {
             json_fail('缺少token或者token不对');
         }
-        $param = json_decode(file_get_contents("php://input"), true);
+        $param = json_decode(optimize_json(file_get_contents("php://input")), true);
+
+        if (json_last_error() != 0) {
+            json_fail('解析异常', json_last_error_msg());
+        }
 
         //校验imei是否存在
         if (!isset($param['IMEI']) ||  $param['IMEI'] == '') {

+ 23 - 12
catch/api/controller/Tool.php

@@ -30,9 +30,10 @@ class Tool extends Base
         if (!$token || $token != '22723927C') {
             json_fail('缺少token或者token错误');
         }
-
-        $param = json_decode(file_get_contents("php://input"), true);
-
+        $param = json_decode(optimize_json(file_get_contents("php://input")), true);
+        if (json_last_error() != 0) {
+            json_fail('解析异常', json_last_error_msg());
+        }
         //校验imei是否存在
         if (!isset($param['IMEI']) ||  $param['IMEI'] == '') {
             json_fail('缺少设备IMEI号参数');
@@ -58,12 +59,25 @@ class Tool extends Base
             json_fail('缺少token或者token不对');
         }
 
-        $param = json_decode(file_get_contents("php://input"), true);
-        print('===========================');
-        var_dump(json_last_error());
+        $test = $_GET['test'];
+        if ($test) {
+            //用于测试
+            $dayt = hex2bin(file_get_contents("php://input"));
+            var_dump($dayt);
+            var_dump(optimize_json(hex2bin(file_get_contents("php://input"))));
+            $param = json_decode(optimize_json(hex2bin(file_get_contents("php://input"))), true);
+            var_dump($param);
+        } else {
+            $param = json_decode(optimize_json(file_get_contents("php://input")), true);
+        }
+        // $param = json_decode(optimize_json(file_get_contents("php://input")), true);
+
+        if (json_last_error() != 0) {
+            json_fail('解析异常', json_last_error_msg());
+        }
+
 
 
-        var_dump(file_get_contents("php://input"));
         //校验imei是否存在
         $where = [];
         if (!isset($param['Imei']) || $param['Imei'] == '') {
@@ -111,9 +125,6 @@ class Tool extends Base
     private function DataIssued($Imei, $version)
     {
 
-
-
-
         $where1 = [
             ['ContentType', '<>', 'WorkRecord'],
             ['Imei', '=', NULL],
@@ -127,7 +138,7 @@ class Tool extends Base
         ];
         $where4 = [
             ['Imei', '=', $Imei],
-            ['ContentType', '=', 'File'],
+            ['Type', '=', 'directive'],
             ['Version', '>', $version]
         ];
         $where3 = [];
@@ -141,7 +152,7 @@ class Tool extends Base
             return json_success('获取成功', $content, $Imei);
         }
         //目前不下发数据 截停
-        return json_success('获取成功', $content, $Imei);
+        //return json_success('获取成功', $content, $Imei);
 
 
 

+ 25 - 3
catch/api/model/Publishack.php

@@ -5,20 +5,22 @@
  * @Author: likang
  * @Date: 2022-07-09 16:57:43
  * @LastEditors: likang
- * @LastEditTime: 2022-07-11 14:16:02
+ * @LastEditTime: 2022-08-02 19:58:38
  */
 
 namespace catchAdmin\api\model;
 
+use catchAdmin\permissions\model\DataRangScopeTrait;
 use catcher\base\CatchModel as Model;
 use catcher\traits\db\BaseOptionsTrait;
 use catcher\traits\db\ScopeTrait;
 
 class PublishAck extends Model
 {
-    use BaseOptionsTrait, ScopeTrait;
+    use DataRangScopeTrait;
     // 表名
     public $name = 'publish_ack';
+
     // 数据库字段映射
     public $field = array(
         'id',
@@ -35,6 +37,26 @@ class PublishAck extends Model
         // 回复的内容
         'Extra',
         //网关Imei号
-        'Imei'
+        'Imei',
+
     );
+    public function getList()
+    {
+        $res =  $this->dataRange()
+            ->catchSearch()
+            ->order($this->aliasField('id'), 'desc')
+            ->paginate();
+        return $res;
+    }
+
+    public function getAddTimeAttr()
+    {
+        $addtime = $this->getData('AddTime');
+        return date('Y-m-d H:i:s', $time = substr($addtime, 0, 10));
+    }
+    public function getAckTimeAttr()
+    {
+        $addtime = $this->getData('AckTime');
+        return date('Y-m-d H:i:s', $time = substr($addtime, 0, 10));
+    }
 }

+ 103 - 90
catch/hydraulic/controller/HydEquipment.php

@@ -4,6 +4,7 @@ namespace catchAdmin\hydraulic\controller;
 
 error_reporting(1);
 
+use catchAdmin\api\model\PublishAck;
 use catchAdmin\equipment\model\EquipmentType;
 use catcher\base\CatchRequest as Request;
 use catcher\CatchResponse;
@@ -209,13 +210,18 @@ class HydEquipment extends CatchController
                 Db::rollback();
                 return  CatchResponse::fail('imei号已存在');
             }
-            Hydraulic::where('eq_id', $id)->update($hydraulic);
+            $bool = Hydraulic::where('eq_id', $id)->find();
+            if ($bool) {
+                Hydraulic::where('eq_id', $id)->update($hydraulic);
+            } else {
+                Hydraulic::create($hydraulic);
+            }
         }
         //保存扳手
         if ($data['equipment_type'] == 3 || $data['equipment_type'] == 4) {
 
             $wrench = [
-                'id' => $data['list']['id'],
+
                 // 编号
                 'number' => $data['number'],
                 //设备id
@@ -236,7 +242,12 @@ class HydEquipment extends CatchController
                 Db::rollback();
                 return  CatchResponse::fail('扳手编号已存在');
             }
-            Wrench::update($wrench, ['id' => $data['list']['id']]);
+            $bool = Wrench::where('eq_id', $id)->find();
+            if ($bool) {
+                Wrench::update($wrench, ['eq_id' => $id]);
+            } else {
+                Wrench::create($wrench);
+            }
         }
         return CatchResponse::success($this->hydEquipmentModel->updateBy($id, $hydequ));
     }
@@ -317,97 +328,99 @@ class HydEquipment extends CatchController
 
 
 
-    public function importStores(Request $request)
+    public function importExcel(Request $request)
     {
-        $url = $request->post('url');
-        if (!$url) {
-            return CatchResponse::fail('请上传文件');
-        }
-        $brand_id = $request->post('brand_id');
-        if (!$brand_id) {
-            return CatchResponse::fail('请选择品牌');
-        }
-        $creator_id = $request->post('creator_id');
-        //解析地址
-        $parse_url = parse_url($url)['path'];
-        //载入excel表格 
-        $objPHPExcel = IOFactory::load(public_path() . $parse_url);
-        // var_dump($objPHPExcel);
-        //获取表名,一维数组,值是表名。如:array('sheet1', 'sheet2', 'sheet3')
-        // $nameArr = $objPHPExcel->getSheetNames();
-        // var_dump($nameArr);
-        //获取表的数量
-        $sheetCount = $objPHPExcel->getSheetCount();
-        $fail = 0; //失败条数
-        $success = 0; //成功条数
-        $total = 0; //总导入数
-        $excel_data = [];
-        //循环读取每一张表
-        for ($index = 0; $index < $sheetCount; $index++) {
-            //设置当前要读取的表
-            $sheet = $objPHPExcel->getSheet($index);   //excel中的第一张sheet
-            // var_dump($sheet);exit;
-            $highestRow  = $sheet->getHighestRow();       // 取得总行数
-            // var_dump($highestRow);
-            if ($highestRow <= 2) {
-                continue;
+
+        $map = [
+            ['key' => 'A', 'value' => 'material_number'],
+            ['key' => 'C', 'value' => 'equipment_type'],
+            ['key' => 'D', 'value' => 'name'],
+            ['key' => 'E', 'value' => 'equipment_model'],
+            ['key' => 'F', 'value' => 'issue_unit'],
+            ['key' => 'G', 'value' => 'fixed_asset_number'],
+            ['key' => 'H', 'value' => 'fixed_asset_number2'],
+            ['key' => 'I', 'value' => 'serial_number'],
+            ['key' => 'J', 'value' => 'factory_number'],
+            ['key' => 'K', 'value' => 'check_last_time'],
+            ['key' => 'L', 'value' => 'check_next_time'],
+            ['key' => 'M', 'value' => 'check_status'],
+            ['key' => 'N', 'value' => 'status'],
+
+        ];
+        //过滤
+        $func = function ($data) {
+
+            $data['equipment_type'] = EquipmentType::where('pid', '<>', 0)->where('name', $data['equipment_type'])->value('id');
+            if ($data['check_status'] == '已校验') {
+                $data['check_status'] = 2;
+            } else if ($data['check_status'] == '待校验') {
+                $data['check_status'] = 1;
+            } else if ($data['check_status'] == '已报废') {
+                $data['check_status'] = -1;
+            } else {
+                $data['check_status'] = 1;
             }
-            $total += $highestRow - 3;
-            for ($j = 4; $j <= $highestRow - 1; $j++) {
-                $data = array(); //每条门店信息
-                $name = trim($sheet->getCell("B" . $j)->getFormattedValue());  //门店名称
-                $city_name = trim($sheet->getCell("C" . $j)->getFormattedValue());  //市区
-                $area_name = trim($sheet->getCell("D" . $j)->getFormattedValue());  //县区
-                $street = trim($sheet->getCell("E" . $j)->getFormattedValue());  //街道办
-                $address = trim($sheet->getCell("F" . $j)->getFormattedValue());  //详细地址
-                $longitude = trim($sheet->getCell("G" . $j)->getFormattedValue());  //经度
-                $latitude = trim($sheet->getCell("H" . $j)->getFormattedValue());  //维度
-                $category = trim($sheet->getCell("I" . $j)->getFormattedValue());  //门店类别
-                if ($category == '直营店') {
-                    $mendian = '1';
-                }
-                if ($category == '经销商') {
-                    $mendian = '2';
-                }
-                if ($category == '加盟店') {
-                    $mendian = '3';
-                }
-                $principal = trim($sheet->getCell("J" . $j)->getFormattedValue());  //店长
-                $mobile = trim($sheet->getCell("K" . $j)->getFormattedValue());  //电话
-                if (!$name) {
-                    $fail++;
-                    $msg = '导入第' . $j . '行门店失败:门店名称不存在';
-                    $this->importFailLog($msg);
-                    continue;
-                }
-                $data = array(
-                    'department_name' => $name,
-                    'brand_id' => $brand_id,
-                    'area_id' => Db::table('area')->whereLike('area_name', $area_name)->value('id'),
-                    'street' => $street,
-                    'address' => $address,
-                    'status' => 1, //正常
-                    'longitude' => $longitude,
-                    'latitude' => $latitude,
-                    'category' => $mendian,
-                    'principal' => $principal,
-                    'mobile' => $mobile,
-                    'reserve_num' => 999, //预约剩余数
-                    'creator_id'      => $creator_id,
-                    'created_at' => time(),
-                    'updated_at' => time()
-                );
-                array_push($excel_data, $data);
+
+            if ($data['status'] = '使用中') {
+                $data['status'] = 4;
+            } else if ($data['status'] == '待维修') {
+                $data['status'] = -1;
+            } else if ($data['status'] == '在途') {
+                $data['status'] = 1;
+            } else if ($data['status'] == '待校验') {
+                $data['status'] = 2;
+            } else if ($data['status'] == '备用') {
+                $data['status'] = 3;
             }
+
+
+            return $data;
+        };
+        return importExcel($request, $map, $this->hydEquipmentModel, $func);
+    }
+    /**
+     * @Descripttion: 查看上传的日志
+     * @name: likang
+     * @return {*}
+     */
+    public function SelectLogByImei(Request $request)
+    {
+        //获取设备的imei号
+        $imei = $request->get('imei');
+        $pub_ack  = new PublishAck();
+
+        $list =  Db::name('publish_ack')->where('Imei', $imei)->field('id,PublishVersion,AddTime,Succ,AckTime,Imei')->order('PublishVersion', 'desc')->select()->toArray();
+        foreach ($list as $key => $item) {
+            //时间
+            $list[$key]['AddTime'] = date('Y-m-d H:i:s', substr($item['AddTime'], 0, 10));
+            $list[$key]['AckTime'] = date('Y-m-d H:i:s', substr($item['AckTime'], 0, 10));
         }
-        // var_dump($excel_data);
-        // return CatchResponse::success();
-        //防止Excel有重复,去重
-        array_unique($excel_data, SORT_REGULAR);
-        if ($count = $this->department->limit(100)->insertAll($excel_data)) {
-            return CatchResponse::success('共' . $total . '条数据,成功' . $count . '条,失败' . $fail . '条');
+        return CatchResponse::success($list);
+    }
+    /**
+     * @Descripttion: 获取日志详情
+     * @name: likang
+     * @param {Request} $request
+     * @return {*}
+     */
+    public function getLogDetail(Request $request)
+    {
+        $type = $request->get('type');
+        $id = $request->get('id');
+        $data = null;
+        if ($type == 1) {
+            $data = Db::name('publish_ack')->where('id', $id)->value('PublishContent');
+            $data = optimize_json($data);
+            $data = json_decode($data, true);
+            if (json_last_error() != 0) {
+                return CatchResponse::fail(json_last_error_msg());
+            }
+        } else {
+            $data = Db::name('publish_ack')->where('id', $id)->value('Extra');
+            $data = optimize_json($data);
         }
-        return CatchResponse::success(['error' => true, 'msg' => '导入失败']);
-        // return CatchResponse::success('共' . $total . '条数据,成功' . $success . '条,失败' . $fail . '条');
+
+
+        return CatchResponse::success($data);
     }
 }

+ 26 - 14
catch/hydraulic/model/HydEquipment.php

@@ -109,6 +109,18 @@ class HydEquipment extends Model
         }
         return $query->where('equipment_type', 'in', $ids);
     }
+    /**
+     * @Descripttion: 搜索泵的Imei
+     * @name: likang
+     * @return {*}
+     */
+    public function searchImeiAttr($query, $value, $data)
+    {
+        $ids =  Hydraulic::where('imei', 'like', '%' . $value . '%')->column('eq_id');
+        return $query->where('id', 'in', $ids);
+    }
+
+
     public function getEquipmentTypeAttr()
     {
         $id = $this->getData('equipment_type');
@@ -154,33 +166,33 @@ class HydEquipment extends Model
 
         return $value;
     }
-    public function getCheckLastTimeAttr()
-    {
-        $time = $this->getData('check_last_time');
+    // public function getCheckLastTimeAttr()
+    // {
+    //     $time = $this->getData('check_last_time');
 
-        return $time ? date('Y-m-d', $time) : '';
-    }
-    public function getCheckNextTimeAttr()
-    {
-        $time = $this->getData('check_next_time');
-        return $time ? date('Y-m-d', $time) : '';
-    }
+    //     return $time ? date('Y-m-d', $time) : '';
+    // }
+    // public function getCheckNextTimeAttr()
+    // {
+    //     $time = $this->getData('check_next_time');
+    //     return $time ? date('Y-m-d', $time) : '';
+    // }
     public function getListAttr()
     {
         $id = $this->getData('id');
         $type_id = $this->getData('equipment_type');
+        $sysdict = new SysDictData();
         $data = null;
         if ($type_id == 2) {
-            $data = Hydraulic::where('eq_id', $id)->find()->toArray();
+            $data = Hydraulic::where('eq_id', $id)->find();
             $data["department_name"] = ModelDepartment::where('id', $data['department_id'])->value('department_name');
-            $sysdict = new SysDictData();
+
             $data['alarm_state_name'] = $sysdict->getValueByCode('AlarmType', $data['alarm_state']);
             return  $data;
         }
         if ($type_id == 3 || $type_id == 4) {
-            $data = Wrench::where('eq_id', $id)->find()->toArray();
+            $data = Wrench::where('eq_id', $id)->find();
             $data["department_name"] = ModelDepartment::where('id', $data['department_id'])->value('department_name');
-            $sysdict = new SysDictData();
             $data['alarm_state_name'] = $sysdict->getValueByCode('AlarmType', $data['alarm_state']);
             return $data;
         } else {

+ 9 - 1
catch/hydraulic/route.php

@@ -5,7 +5,7 @@
  * @Author: likang
  * @Date: 2022-05-27 13:34:31
  * @LastEditors: likang
- * @LastEditTime: 2022-07-26 17:13:59
+ * @LastEditTime: 2022-08-03 10:56:38
  */
 // +----------------------------------------------------------------------
 // | CatchAdmin [Just Like ~ ]
@@ -34,6 +34,14 @@ $router->group(function () use ($router) {
 	$router->get('wrenchCheckRecordData', '\catchAdmin\hydraulic\controller\WrenchCheckRecord@decordDataList');
 	// 液压设备路由
 	$router->resource('hydEquipment', '\catchAdmin\hydraulic\controller\HydEquipment');
+	//导入设备列表
+	$router->post('importHydExcel', '\catchAdmin\hydraulic\controller\HydEquipment@importExcel');
+	//查看上传日志列表SelectLogByImei
+	$router->get('selectLogByImei', '\catchAdmin\hydraulic\controller\HydEquipment@SelectLogByImei');
+	//查看日志详情
+	$router->get('getLogDetail', '\catchAdmin\hydraulic\controller\HydEquipment@getLogDetail');
+
+
 	//获取类型获取设备
 	$router->get('getAllHydEqu', '\catchAdmin\hydraulic\controller\HydEquipment@getAllHydEqu');
 	//获取所有设备状态字典

+ 22 - 11
catch/system/controller/Lssue.php

@@ -5,16 +5,19 @@
  * @Author: likang
  * @Date: 2022-07-26 16:16:11
  * @LastEditors: likang
- * @LastEditTime: 2022-07-28 17:47:29
+ * @LastEditTime: 2022-07-29 16:00:37
  */
 
 namespace catchAdmin\system\controller;
 
 use catchAdmin\api\Directive;
+use catchAdmin\hydraulic\controller\HydEquipment;
+use catchAdmin\hydraulic\model\HydEquipment as ModelHydEquipment;
 use catcher\base\CatchRequest as Request;
 use catcher\CatchResponse;
 use catcher\base\CatchController;
 use catchAdmin\system\model\Lssue as lssueModel;
+use catcher\CatchAdmin;
 
 class Lssue extends CatchController
 {
@@ -44,19 +47,27 @@ class Lssue extends CatchController
     {
         $data = $request->post();
         $this->lssueModel->storeBy($request->post());
-        $content = [
-            'type' => $data['type'],
-            'file_name' => $data['file_name'],
-            'equ_ids' => $data['equ_ids']
-        ];
 
 
+        $list = ModelHydEquipment::alias('e')->leftJoin('hydraulic h', 'e.id = h.eq_id')
+            ->where('e.id', 'in', $data['equ_ids'])->column('h.imei');
+        if ($data['directive'] == 'File') {
+            $content = [
+                'file_name' => $data['file_name']
+            ];
+        } else if ($data['directive'] == 'Config') {
+            $content = json_decode($data['file_name'], true);
+            if (json_last_error() != 0) {
+                return CatchResponse::fail(json_last_error_msg());
+            }
+        } else if ($data['directive'] = 'SysCMD') {
 
-
-
-
-        // Directive::Issued($data['type'],);
-        $this->lssueModel->IssueAll($content);
+            $content = [
+                'cmd_content' => trim($data['file_name'])
+            ];
+        }
+        Directive::Issued($data['type'], $content, $data['directive'], $list);
+        // $this->lssueModel->IssueAll($content);
         return CatchResponse::success();
     }
 

+ 22 - 1
catch/system/model/Lssue.php

@@ -4,11 +4,13 @@ namespace catchAdmin\system\model;
 
 use catchAdmin\hydraulic\model\HydEquipment;
 use catchAdmin\hydraulic\model\Hydraulic;
+use catchAdmin\permissions\model\DataRangScopeTrait;
 use catcher\base\CatchModel as Model;
 use think\facade\Db;
 
 class Lssue extends Model
 {
+    use DataRangScopeTrait;
     // 表名
     public $name = 'lssue';
     // 数据库字段映射
@@ -33,6 +35,17 @@ class Lssue extends Model
         // 软删除
         'deleted_at',
     );
+    public function getList()
+    {
+        $res =  $this->dataRange()
+            ->catchSearch()
+            ->order($this->aliasField('id'), 'desc')
+            ->paginate();
+        return $res;
+    }
+
+
+
     public function setEquIdsAttr($value)
     {
         $data = json_encode($value);
@@ -41,7 +54,15 @@ class Lssue extends Model
     public function getEquIdsAttr()
     {
         $data =  $this->getData('equ_ids');
-        return json_decode($data, true);
+        $data = json_decode($data, true);
+        $list =  HydEquipment::where('id', 'in', $data)->column('name');
+        return implode(',', $list);
+    }
+    public function getDirectiveAttr()
+    {
+        $Directive =  $this->getData('directive');
+        $sd = new SysDictData();
+        return $sd->getValueByCode('directive', $Directive);
     }
     /**
      * @Descripttion: 下发指令