| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace common\components;
- /**
- * 常量配置
- */
- class constant
- {
- public static function data()
- {
- $arr = [
- //默认的日期搜索选项
- 'dateDefaultOption' => [
- ['name' => '昨天', 'value' => 'yesterday'],
- ['name' => '今天', 'value' => 'today',],
- ['name' => '本月', 'value' => 'thisMonth',],
- ['name' => '上月', 'value' => 'lastMonth',],
- ['name' => '今年', 'value' => 'thisYear',],
- ['name' => '近一周', 'value' => 'last7Days',],
- ['name' => '近30天', 'value' => 'last30Days',],
- ['name' => '自定义', 'value' => 'custom',],
- ],
- ];
- return $arr;
- }
- }
|