| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Jonlin
- * Date: 2019/3/29
- * Time: 9:28
- */
- namespace App\Models;
- use Illuminate\Support\Facades\DB;
- class SportsBasket extends BaseModel {
- protected $table = "st_lq_competition";
- public $timestamps = false;
- function getinfo($list = 10, $page, $where = '',$orwhere = '')
- {
- if (is_array ($where) && count ($where) > 0) {
- $data = $this->join('st_lq_league','st_lq_competition.lg_id','=','st_lq_league.lg_id')
- ->select('st_lq_competition.id','st_lq_competition.match_id','st_lq_competition.lg_id','st_lq_league.name_chinese','st_lq_competition.home_team','st_lq_competition.guest_team','st_lq_competition.match_date','st_lq_competition.match_time','st_lq_competition.status','st_lq_competition.recommend')
- ->orderby('st_lq_competition.match_date','desc')
- ->orderby('st_lq_competition.match_time','desc')
- ->where($where)
- ->orwhere($orwhere)
- ->paginate ($list);
- } else {
- $data = $this->join('st_lq_league','st_lq_competition.lg_id','=','st_lq_league.lg_id')
- ->select('st_lq_competition.id','st_lq_competition.match_id','st_lq_competition.lg_id','st_lq_league.name_chinese','st_lq_competition.home_team','st_lq_competition.guest_team','st_lq_competition.match_date','st_lq_competition.match_time','st_lq_competition.status','st_lq_competition.recommend')
- ->orderby('st_lq_competition.match_date','desc')
- ->orderby('st_lq_competition.match_time','desc')
- ->paginate ($list);
- }
- if (!$data < 0) {
- return -2021052003; //
- }
- for($i=0;$i<count($data);$i++){
- if($data[$i]->match_date < date('Y-m-d',time())){
- $data[$i]->status = '2';
- //$this->where('id', $data[$i]->id)->update(['status' => 2]);
- }else if($data[$i]->match_date == date('Y-m-d',time()) && strtotime($data[$i]->match_time)+2400 <= strtotime(date('H:i:s',time()))){
- $data[$i]->status = '2';
- //$this->where('id', $data[$i]->id)->update(['status' => 2]);
- }
- else if($data[$i]->match_date == date('Y-m-d',time()) && strtotime($data[$i]->match_time) < strtotime(date('H:i:s',time())) && strtotime(date('H:i:s',time())) < strtotime($data[$i]->match_time)+2400){
- $data[$i]->status = '1';
- //$this->where('id', $data[$i]->id)->update(['status' => 1]);
- }else if($data[$i]->match_date == date('Y-m-d',time()) && strtotime($data[$i]->match_time) > strtotime(date('H:i:s',time()))){
- $data[$i]->status = '0';
- //$this->where('id', $data[$i]->id)->update(['status' => 0]);
- }
- else if($data[$i]->match_date > date('Y-m-d',time())){
- $data[$i]->status = '0';
- //$this->where('id', $data[$i]->id)->update(['status' => 0]);
- }
- if($data[$i]->status==0){
- $data[$i]->status = '未开始';
- }else if($data[$i]->status==1){
- $data[$i]->status = '正在进行';
- }else if($data[$i]->status==2){
- $data[$i]->status = '已结束';
- }
- if($data[$i]->guest_team == ''){
- $data[$i]->home_guest = $data[$i]->home_team;
- }else{
- $data[$i]->home_guest = $data[$i]->home_team.' VS '.$data[$i]->guest_team;
- }
- }
- return $data->toArray();
- }
- //更新设置
- function updateInfos($data,$id){
- $res=$this->where('id',$id)->update($data);
- if(!$res) {
- return -7020050022;//更新失败
- }
- return 1;
- }
- function getmatchid($id){
- $res=$this->where('id',$id)->first();
- if(!$res){
- return -2021052003;
- }
- return $res->match_id;
- }
- //篮球赛事联赛查询
- function allcompetition($lg_id){
- $data = $this->where('lg_id',$lg_id)->select('lg_id','home_team')->get();
- if (!$data) {
- return -5040000102; //无相关信息
- }
- return $data->toArray();
- }
- }
|