dataRange() ->catchSearch() ->order($this->aliasField('id'), 'desc') ->paginate(); return $res; } public function setEquIdsAttr($value) { $data = json_encode($value); return $data; } public function getEquIdsAttr() { $data = $this->getData('equ_ids'); $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: 下发指令 * @name: likang * @return {*} */ public function IssueAll($data) { $type = $data['type']; $content = [ 'file_name' => $data['file_name'] ]; if ($type == 1) { $msetime = msectime(); $cont = [ 'Type' => 'directive', 'ContentType' => 'File', 'Content' => json_encode($content), 'ContentId' => md5(time() . mt_rand(1, 1000000)), 'AddTime' => $msetime, 'Version' => $msetime, 'Status' => 2 ]; Db::name('publish')->save($cont); } if ($type == 2) { $list = HydEquipment::alias('e')->leftJoin('hydraulic h', 'e.id = h.eq_id') ->where('e.id', 'in', $data['equ_ids'])->field('h.imei as imei')->select()->toArray(); foreach ($list as $item) { if (!$item['imei']) { continue; } else { $msetime = msectime(); $cont = [ 'Type' => 'directive', 'ContentType' => 'File', 'Content' => json_encode($content), 'ContentId' => md5(time() . mt_rand(1, 1000000)), 'AddTime' => $msetime, 'Version' => $msetime, 'Imei' => $item['imei'], 'Status' => 2 ]; Db::name('publish')->save($cont); } } } } }