constant.php 624 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace common\components;
  3. /**
  4. * 常量配置
  5. */
  6. class constant
  7. {
  8. public static function data()
  9. {
  10. $arr = [
  11. //默认的日期搜索选项
  12. 'dateDefaultOption' => [
  13. ['name' => '昨天', 'value' => 'yesterday'],
  14. ['name' => '今天', 'value' => 'today',],
  15. ['name' => '本月', 'value' => 'thisMonth',],
  16. ['name' => '上月', 'value' => 'lastMonth',],
  17. ['name' => '今年', 'value' => 'thisYear',],
  18. ['name' => '近一周', 'value' => 'last7Days',],
  19. ['name' => '近30天', 'value' => 'last30Days',],
  20. ['name' => '自定义', 'value' => 'custom',],
  21. ],
  22. ];
  23. return $arr;
  24. }
  25. }