Screen.php
2.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
namespace app\api\controller;
use app\common\controller\Api;
/**
* 数据大屏
* @ApiWeigh (95)
*/
class Screen extends Api
{
protected $noNeedLogin = ['*'];
protected $noNeedRight = ['*'];
/**
* @ApiTitle (大屏管理)
* @ApiMethod (POST)
* @ApiReturn ({"code":状态码,
"msg":"提示信息"
"time": "时间戳",
"data": "大屏图片",
"time": "当前时间",
"campus": "活动名称",
"team_rank": 战队排行[从高到底排],
"study_rank": 个人排行[每个战队中从高到低排]
}
*/
public function index(){
$list = [];
$data = db('screen')->find();
$list['images'] = cdnurl($data['images'],true);
$list['count_down'] = $data['endtime'];
$list['screen_name'] = db('ronda')->where('id',$data['ronda_id'])->value('title');
$list['campus_name'] = $data['campus'];
$list['time'] = date('Y-m-d H:i:s',time());
$list['team_rank'] = \db('team_score')
->where('ronda_id',$data['ronda_id'])
->order('score DESC')
->paginate(4)
->each(function ($item,$key){
$item['team_name'] = db('team')->where('id',$item['team_id'])->value('title');
$item['team_score'] = $item['score'];
// $item['score'] = floor($item['sum_score']);
// $item['study'] = db('study_score_log l')
// ->distinct('l.study_id')
// ->join('study s','l.study_id = s.id')
// ->whereIn('l.campus_ids',$item['campus_ids'])
// ->where('s.team',$item['team'])
// ->field('s.name,sum(score) as sum_score')
// ->order('sum_score','desc')
// ->group('study_id')
// ->select();
return $item;
});
$this->success('获取成功',$list);
}
}