wupengfei 2 years ago
parent
commit
309a93ecfa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      application/store/controller/BlindBox.php

+ 1 - 1
application/store/controller/BlindBox.php

@@ -71,7 +71,7 @@ class BlindBox extends Controller
     {
         $this->title = '添加奖项';
         //获取可以选择的藏品列表
-        $coll_list = Db::name('store_collection')->where('type',1)->where('is_deleted',0)->where('state',2)->where('casting_num','>',0)->field('id,name')->select();
+        $coll_list = Db::name('store_collection')->where('type',1)->where('is_deleted',0)->where('status',2)->where('casting_num','>',0)->field('id,name')->select();
         $this->coll_list = $coll_list;
         $this->_form($this->table, 'form');
     }