Prechádzať zdrojové kódy

最新的砸金蛋,来自伴声

lizhen_gitee 1 rok pred
rodič
commit
876db7fd17

+ 5 - 1
application/admin/lang/zh-cn/egg/jackpot.php

@@ -1,5 +1,9 @@
 <?php
 
 return [
-    'Name' => '奖池名称'
+    'Name'      => '奖池名称',
+    'Status'    => '状态',
+    'Status -1' => '已抽完奖池',
+    'Status 1'  => '当前奖池',
+    'Status 0'  => '未开放奖池',
 ];

+ 1 - 0
public/assets/js/backend/egg/jackpot.js

@@ -27,6 +27,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                         {checkbox: true},
                         {field: 'id', title: __('Id')},
                         {field: 'name', title: __('Name'), operate: 'LIKE'},
+                        {field: 'status', title: __('Status'), searchList: {"-1":__('Status -1'),"1":__('Status 1'),"0":__('Status 0')}, formatter: Table.api.formatter.status},
                         {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
                     ]
                 ]