constant.php 516 B

123456789101112131415161718192021222324252627
  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' => 'custom',],
  19. ],
  20. ];
  21. return $arr;
  22. }
  23. }