Stwqresult.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Stwqresult extends Model
  5. {
  6. protected $table = 'st_wq_result';
  7. public $timestamps = false;
  8. function resultlist($list = 10, $page, $where = '', $orwhere = '')
  9. {
  10. if (is_array ($where) && count ($where) > 0) {
  11. $data = $this->join('st_wq_league','st_wq_result.lg_id','=','st_wq_league.id')->join('st_wq_competition','st_wq_competition.id','=','st_wq_result.match_id')->select($this->table.'.id',$this->table.'.home_player_name',$this->table.'.guest_player_name',$this->table.'.match_id','st_wq_result.first_score_player','st_wq_competition.status','st_wq_result.last_score_player','st_wq_result.match_score','st_wq_result.update_time','st_wq_competition.match_time','st_wq_result.match_process',$this->table.'.home_player_score',$this->table.'.guest_player_score',$this->table.'.start_time','st_wq_league.name_chinese as saisname')->orderby('st_wq_result.id','desc')->where($where)->orwhere($orwhere)->paginate ($list);
  12. } else {
  13. $data = $this->join('st_wq_league','st_wq_result.lg_id','=','st_wq_league.id')->join('st_wq_competition','st_wq_competition.id','=','st_wq_result.match_id')->select($this->table.'.id',$this->table.'.home_player_name',$this->table.'.guest_player_name',$this->table.'.match_id','st_wq_result.first_score_player','st_wq_competition.status','st_wq_result.last_score_player','st_wq_result.match_score','st_wq_result.update_time','st_wq_competition.match_time','st_wq_result.match_process',$this->table.'.home_player_score',$this->table.'.guest_player_score',$this->table.'.start_time','st_wq_league.name_chinese as saisname')->orderby('st_wq_result.id','desc')->paginate ($list);
  14. }
  15. $newsim = new \App\Models\SportsNoteList();
  16. $simplex = $newsim->getsim('wq');
  17. $newstr = new \App\Models\MoneyBuyStr();
  18. $str = $newstr->strmatchs();
  19. //print_r($str);exit;
  20. for ($i=0; $i < count($data); $i++) {
  21. $data[$i]->numsim = 0;
  22. for ($j=0; $j < count($simplex); $j++) {
  23. if($simplex[$j]['match_id'] == $data[$i]->match_id){
  24. $data[$i]->numsim = $data[$i]->numsim+1;
  25. }
  26. }
  27. $data[$i]->numstr = 0;
  28. for ($a=0; $a < count($str); $a++) {
  29. if(in_array($data[$i]->match_id,$str[$a]['match_ids'])){
  30. $data[$i]->numstr = $data[$i]->numstr+1;
  31. }
  32. }
  33. }
  34. return $data->toArray ();
  35. }
  36. //查询赛事
  37. function matchjg($match_id){
  38. $data = $this->where('match_id',$match_id)->select('id','home_team','guest_team')->first();
  39. if (!$data) {
  40. return -5040000102; //无相关信息
  41. }
  42. return $data->toArray();
  43. }
  44. //更新状态
  45. function updatestatus($field,$where,$data){
  46. $res=$this->where($field,$where)->update($data);
  47. if(!$res) {
  48. return -7020050022;//更新失败
  49. }
  50. return 1;
  51. }
  52. }
  53. ?>