UserTable.php 698 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace App\Lib\Biz\Game\Table;
  3. /**
  4. * Created by PhpStorm.
  5. * User: admin
  6. * Date: 2017/12/1
  7. * Time: 13:50
  8. * 幸运28表格数据配置
  9. */
  10. class UserTable extends BaseTable {
  11. //游戏开关
  12. function getUserTh() {
  13. return array(
  14. array(
  15. 'field' => 'name',
  16. 'title' => trans('common.account'),
  17. 'width' => 250,
  18. 'sort' => true,
  19. 'fixed' => 'left',
  20. ),
  21. array(
  22. 'field' => 'closeinfo',
  23. 'title' => trans('common.name'),
  24. 'width' => 250,
  25. 'sort' => true,
  26. 'fixed' => 'left',
  27. ),
  28. array(
  29. 'field' => 'LAY_CHECKED',
  30. 'title' => trans('common.status'),
  31. 'width' => 250,
  32. 'templet' => '#switchTpl',
  33. 'unresize' => true,
  34. ),
  35. );
  36. }
  37. }