| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Jonlin
- * Date: 2019/3/29
- * Time: 9:28
- */
- namespace App\Models;
- use Illuminate\Support\Facades\DB;
- class SportsSoccer extends BaseModel {
- protected $table = "st_zq_competition";
- public $timestamps = false;
- function getinfo($list = 10, $page, $where = '',$orwhere = '')
- {
- if (is_array ($where) && count ($where) > 0) {
- $data = $this->join('st_zq_league','st_zq_competition.lg_id','=','st_zq_league.lg_id')
- ->select('st_zq_competition.id','st_zq_competition.match_id','st_zq_competition.lg_id','st_zq_league.name_chinese','st_zq_competition.home_team','st_zq_competition.guest_team','st_zq_competition.match_date','st_zq_competition.match_time','st_zq_competition.status','st_zq_competition.recommend')
- ->orderby('st_zq_competition.match_date','desc')
- ->orderby('st_zq_competition.match_time','desc')
- ->where($where)
- ->orwhere($orwhere)
- ->paginate ($list);
- } else {
- $data = $this->join('st_zq_league','st_zq_competition.lg_id','=','st_zq_league.lg_id')
- ->select('st_zq_competition.id','st_zq_competition.match_id','st_zq_competition.lg_id','st_zq_league.name_chinese','st_zq_competition.home_team','st_zq_competition.guest_team','st_zq_competition.match_date','st_zq_competition.match_time','st_zq_competition.status','st_zq_competition.recommend')
- ->orderby('st_zq_competition.match_date','desc')
- ->orderby('st_zq_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)+5400 <= 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)+5400){
- $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;
- }
- }
|