nana_sen 1 년 전
부모
커밋
e76a553017
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      catch/api/controller/Api.php

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

@@ -1111,8 +1111,8 @@ class Api extends CatchController
             $info['status'] = 1;
 
             // 临时功能代码
-            $labels = []; //测试设备
-            if (in_array($info['id'], $labels)) {
+            $labels = ['0200C1D1', '0200C1D2']; //测试设备
+            if (in_array(strtoupper($info['id']), $labels)) {
                 # code...
                 //card_black
                 $where = [];
@@ -1120,7 +1120,7 @@ class Api extends CatchController
                 $where[] = ['field', '=','card_black'];
                 $bkList = Db::name('sys_config')->where($where)->find();
                 $bkList = explode(',', $bkList['fieldValue']);
-                if (in_array($info['id'], $labels)) {
+                if (in_array(strtoupper($info['id']), $bkList)) {
                     # code...
                     $info['status'] = 3;
                 }