소스 검색

大王椰出入库

cqpCow 1 년 전
부모
커밋
5632f60024
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      app/Service/InOutOptionService.php

+ 5 - 1
app/Service/InOutOptionService.php

@@ -112,7 +112,11 @@ class InOutOptionService extends Service
             if(Redis::exists($key)) Redis::del($key);
         }else{
             //通道门处在发货出库屏 设置55秒过期  前端50秒请求一次 更新标识时间
-            if (Redis::setnx($key, 1)) Redis::expire($key, 55); //多少秒后过期
+            if (Redis::setnx($key, 1)) {
+                Redis::expire($key, 55); //多少秒后过期
+            }else{
+                Redis::expire($key, 55); //多少秒后过期
+            }
         }
     }
 }