bianjunhui 2 년 전
부모
커밋
cc9de4a3cc
3개의 변경된 파일9개의 추가작업 그리고 9개의 파일을 삭제
  1. 3 3
      application/admin/model/Prize.php
  2. 3 3
      application/admin/model/Raffle.php
  3. 3 3
      application/admin/model/Raprize.php

+ 3 - 3
application/admin/model/Prize.php

@@ -27,12 +27,12 @@ class Prize extends Model
     protected $append = [
         'status_text'
     ];
-    
 
-    
+
+
     public function getStatusList()
     {
-        return ['30' => __('Status 30')];
+        return ['normal' => __('Normal'), 'hidden' => __('Hidden')];
     }
 
 

+ 3 - 3
application/admin/model/Raffle.php

@@ -27,12 +27,12 @@ class Raffle extends Model
     protected $append = [
         'status_text'
     ];
-    
 
-    
+
+
     public function getStatusList()
     {
-        return ['30' => __('Status 30')];
+        return ['normal' => __('Normal'), 'hidden' => __('Hidden')];
     }
 
 

+ 3 - 3
application/admin/model/Raprize.php

@@ -27,12 +27,12 @@ class Raprize extends Model
     protected $append = [
         'status_text'
     ];
-    
 
-    
+
+
     public function getStatusList()
     {
-        return ['30' => __('Status 30')];
+        return ['normal' => __('Normal'), 'hidden' => __('Hidden')];
     }