1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- return [
- 'basic' => [
- [
- 'name' => '时间',
- 'column' => 'ref_date',
- "enable_to_sort"=> false
- ],
- [
- 'name' => '企微主体',
- 'column' => 'corp_name',
- "enable_to_sort"=> false
- ],
- [
- 'name' => '当天消耗',
- 'column' => 'paid',
- "enable_to_sort"=> true
- ],
- [
- 'name' => '企微关注人数',
- 'column' => 'scan_follow_count',
- 'notes' => '企微关联投放账号的企微关注人数',
- "enable_to_sort"=> true
- ],
- [
- 'name' => '企微关注成本',
- 'column' => 'follow_cost',
- 'notes' => '当天消耗/企微关注人数',
- "enable_to_sort"=> false
- ],
- [
- 'name' => '企微加粉人数',
- 'column' => 'add_user_count',
- 'notes' => '系统企微关注人数',
- "enable_to_sort"=> false
- ],
- [
- 'name' => '首日流失用户',
- 'column' => 'first_loss_count',
- "enable_to_sort"=> true
- ],
- [
- "name" => "首日流失率",
- 'column' => "first_loss_rate",
- "enable_to_sort" => true
- ],
- [
- 'name' => '3天流失用户',
- 'column' => 'third_loss_count',
- "enable_to_sort"=> true
- ],
- [
- 'name' => '3天流失率',
- 'column' => 'third_loss_rate',
- "enable_to_sort"=> true
- ],
- [
- 'name' => '7天流失用户',
- 'column' => 'seventh_loss_count',
- "enable_to_sort"=> true
- ],
- [
- 'name' => '7天流失率',
- 'column' => 'seventh_loss_rate',
- "enable_to_sort"=> true
- ],
- [
- 'name' => '15天流失用户',
- 'column' => 'fifteenth_loss_count',
- "enable_to_sort"=> true
- ],
- [
- 'name' => '15天流失率',
- 'column' => 'fifteenth_loss_rate',
- "enable_to_sort"=> true
- ],
- [
- 'name' => '30天流失用户',
- 'column' => 'thirtieth_loss_count',
- "enable_to_sort"=> true
- ],
- [
- 'name' => '30天流失率',
- 'column' => 'thirtieth_loss_rate',
- "enable_to_sort"=> true
- ],
- [
- 'name' => '累计流失用户',
- 'column' => 'loss_count',
- "enable_to_sort"=> true
- ],
- [
- 'name' => '累计流失率',
- 'column' => 'loss_rate',
- "enable_to_sort"=> true
- ]
- ]
- ];
|