songxingwei 2 years ago
parent
commit
1a48db17b0
1 changed files with 8 additions and 1 deletions
  1. 8 1
      application/store/controller/Goods.php

+ 8 - 1
application/store/controller/Goods.php

@@ -65,7 +65,14 @@ class Goods extends Controller
                     $v['is_hash'] = 3;
                 }
             }else{
-                $v['is_hash'] = 1;
+                $redis = new Redis();
+                $count = $redis->get('castingHash_'.$v['id']);
+                if ($count && $count>0){
+                    $v['is_hash'] = 3;
+                }else{
+                    $v['is_hash'] = 1;
+                }
+
             }
         }
     }