| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836 |
- <template>
- <div>
- <div class="Serch">
- <!-- <div class="Serch" v-if="headShow"> -->
- <div class="Soccer-game row center">
- <div class="Soccer-game-title row center">
- {{name}}
- </div>
- <div
- v-if="isShow"
- style="height:0.88rem;margin-left:0.16rem;padding:0 0.1rem;"
- class="row center"
- @click="IsSoccerGameClick(isSoccerGameClick)"
- >
- <img
- :class="isSoccerGameClick==true?'Soccer-game-src act':'Soccer-game-src return'"
- :src="img.Soccerimg1"
- >
- </div>
- </div>
- <div class="Serch-box">
- <div class="Serch-box-home">
- <img class="Serch-box-img" :src="img.Serchimg">
- <input
- v-model="SerchValue"
- @input="serchchange(SerchValue)"
- class="Serch-box-input"
- type="text"
- placeholder="请输入联赛名称"
- >
- <img
- class="Serch-box-del"
- @click="delinputvalue()"
- v-if="Serchchange==true"
- :src="img.Serchdel"
- >
- </div>
- </div>
- </div>
- <div class="Soccer-game-box row" v-if="isSoccerGameClick == true && isShow">
- <p
- @click="listActive(i.id)"
- v-for="(i,index) in Regulations.list"
- :key="index"
- :class="listnum==i.id?'active':''"
- >{{i.name}}</p>
- </div>
- <div v-if="dayShow" class="box">
- <div id="NavSlide">
- <nav>
- <p v-for="(item,$index) in arr" @click="toggle($index,item.id)">
- <span :class="{active:$index == active}">{{item.title}}</span>
- </p>
- </nav>
- </div>
- </div>
- <div class="match" v-if="entryShow">
- <yd-accordion accordion>
- <div class="matchBox" v-for="items in data" :key="items.id">
- <yd-accordion-item :title="items.region" open>
- <div class="list">
- <div
- v-for="item in items.league_count"
- :key="item.lg_id"
- @click="goMatchInfo(item.lg_id )"
- >
- <span>{{item.league}}</span>
- <span class="num">{{item.count}}</span>
- </div>
- </div>
- </yd-accordion-item>
- </div>
- </yd-accordion>
- </div>
- <div v-if="noData">
- <NotOpend :title="this.info"/>
- </div>
- <!-- 参赛表 -->
- <div v-if="!entryShow" class="entry">
- <div
- class="list"
- v-for="item in entryList.info"
- :key="item.id"
- @click="goMatchInfo(item.lg_id,item.code,item.count )"
- >
- <span>{{item.name}}</span>
- <span class="num">{{item.count}}</span>
- </div>
- </div>
- </div>
- </template>
- <script>
- import NotOpend from "@/components/StNotOpend";
- import "../css/index.css";
- export default {
- props: ["name"],
- // props: ["name", "headShow"],
- data() {
- return {
- isShow: true, //如果为串场则把导航显示出来,否则不显示
- SerchValue: "",
- data: "", //联赛列表
- ballId:'', //球类别名
- noData: false, //没有数据为true
- datetimeNum: "", //赛事时间
- active: 0,
- entryShow: true, //参赛表
- lgId: "",
- serchTime: 0, //默认时间值
- sear: "", //早盘存储查找时间
- listnum: 0, //赛事类型
- isTrue: true, //显示日期
- dayShow: false,
- Serchchange: false,
- info: "没有相关联赛信息",
- isSoccerGameClick: true,
- entryList: "", // 参赛表数据
- str_type: false, //串场冠军盘传值
- img: {
- Soccerimg1: require("../assets/st-imges/soccer1.png"),
- Soccerimg2: require("../assets/st-imges/soccer1.png"),
- Serchimg: require("../assets/st-imges/sousuo.png"),
- Serchdel: require("../assets/st-imges/del.png"),
- searchreturn: require("../assets/st-imges/returnbox.png")
- },
- //
- Regulations: {
- title: " ",
- list: [
- { id: 1, name: "参赛表" },
- { id: 0, name: "赛事" },
- { id: 2, name: "冠军盘口" }
- ]
- },
- active: 0,
- arr: [], //时间条
- timers: true,
- getIsShow:true,
- };
- },
- components: {
- NotOpend
- },
- methods: {
- //设置一周赛事
- fun_date: function() {
- let date = new Date();
- let MonthNum = 0;
- let lastMonth = new Date(
- date.getFullYear(),
- date.getMonth() + 1,
- 0
- ).getDate();
- for (let i = 1; i < 8; i++) {
- let years = date.getFullYear();
- let month = date.getMonth() + 1;
- let day =
- date.getDate() + i < 10
- ? "0" + (date.getDate() + i)
- : date.getDate() + i;
- if (date.getDate() + i > lastMonth) {
- MonthNum++;
- month = date.getMonth() + 2;
- day = "0" + MonthNum;
- }
- let time = {};
- time.id = years + "-" + month + "-" + day;
- time.title = years + "-" + month + "-" + day;
- this.arr.push(time);
-
- if (i == 7) {
- this.arr.push({ id: "morning", title: "其他早盘" });
- }
- }
- },
- // search=搜索关键字 lg_id = 联赛id (如果传入,则获取联赛下冠军盘口)
- getAjaxInfo: function(lg_id, search, match_date, str_type, index) {
- // console.log(
- // this.$store.getters.getBallId,
- // this.$store.getters.getActivity
- // );
- this.$http
- .get(this.$ports.match.matchState, {
- game_code: this.$store.getters.getBallId,
- type_code: this.$store.getters.getActivity,
- lg_id,
- search,
- match_date,
- str_type
- })
- .then(res => {
- if (
- res.data.status == 1 &&
- res.data.data.length > 0 &&
- res.data.data != null
- ) {
- this.Regulations.title = res.data.data.type;
- this.noData = false;
- this.data = res.data.data;
- //console.log("数据", this.data);
- } else {
- this.data = "";
- this.noData = true;
- }
- });
- let _this = this;
- setTimeout(() => {
- _this.$store.dispatch("GETSHOW", false);
- }, 1000);
- },
- //获取冠军盘口数据
- // 暂不使用
- getChampion: function(typeGame, search) {
- //console.log("冠军盘口");
- this.$store.dispatch("GETSHOW", true);
- this.$http
- .get(this.$ports.match.first, { typeGame, search })
- .then(res => {
- if (
- res.status == 200 &&
- res.data.data != [] &&
- res.data.data != null
- ) {
- if (res.data.data.info.length > 0) {
- this.data = res.data.data.info;
- } else {
- this.data = "";
- }
- } else {
- }
- if (this.data != "") {
- let _this = this;
- setTimeout(function() {
- _this.$store.dispatch("GETSHOW", false);
- }, 500);
- }
- });
- },
- //显示隐藏赛事类型
- IsSoccerGameClick(isclick) {
- this.isSoccerGameClick = !isclick;
- },
- //获取input输入的值查询数据
- serchchange(val) {
- let ball = this.$store.getters.getBallId;
- if (val.length >= 1) {
- this.Serchchange = true;
- } else {
- this.Serchchange = false;
- }
- if (this.$store.getters.getActivity == "StMorningPlate") {
-
- if(ball == 'zq'){
- this.getAjaxInfo("", val, this.serchTime);
- }else{
- this.getAjaxInfo("", val,this.arr[0].title);
- }
- } else {
- this.getAjaxInfo("", val);
- }
- },
- //删除搜索框数据
- delinputvalue() {
- this.SerchValue = "";
- this.Serchchange = false;
- if (this.listnum == 2) {
- this.getAjaxInfo("", "", "");
- } else if (this.listnum == 3) {
- this.getChampion(this.$store.getters.getBallId);
- }
- },
- //切换赛事类型
- listActive(id) {
- // console.log("id", id);
- // sessionStorage.setItem("active", id);
- if (this.listnum == id) return false;
- this.SerchValue = "";
- this.listnum = id;
- this.str_type = true;
- //console.log("this.listnum", this.listnum);
- if (id == 0) {
- this.entryShow = true;
- this.isTrue = true;
- this.getAjaxInfo("", "", "", id);
- } else {
- this.isTrue = false;
- if (id == 2) {
- this.entryShow = true;
- // this.getChampion(this.$route.query.id)
- this.getAjaxInfo("", "", "", id);
- } else if (id == 1) {
- this.entryShow = false;
- this.$store.dispatch("GETSHOW", true);
- this.$http
- .get(this.$ports.match.participate, {
- typeGame: this.$store.getters.getBallId
- })
- .then(res => {
- //console.log("res", res);
- if (
- res.status == 200 &&
- res.data.data != [] &&
- res.data.data != null
- ) {
- this.entryShow = false;
- this.entryList = res.data.data;
- } else {
- }
- let _this = this;
- setTimeout(function() {
- _this.$store.dispatch("GETSHOW", false);
- }, 500);
- });
- }
- }
- },
- //切换日期时间
- toggle: function(index, id) {
- if (index == this.active) return false;
- //console.log("index", index);
- this.serchTime = id;
- this.active = index;
- this.datetimeNum = id;
- this.sear = id;
- this.SerchValue = "";
- this.entryShow = true;
- this.getAjaxInfo("", "", id);
- this.timers = false;
- let _this = this;
- // if(this.$store.getters.getActivity == 'StMorningPlate'){
- // this.timers = true;
- // this.$public.ajaxTimerFun(function(timing) {
- // _this.getAjaxInfo("", "", id);
- // if (!_this.timers) {
- // clearInterval(timing);
- // }
- // });
- // }
- },
- //打开联赛投注页面
- goMatchInfo: function(sessionId, code, count) {
- let ball = this.$store.getters.getBallId;
- if (count == 0) {
- } else {
- if (
- this.$store.getters.getActivity == "StStringScene" ||
- this.$store.getters.getActivity == "StChampion"
- ) {
- if (
- this.listnum == 2 ||
- this.$store.getters.getActivity == "StChampion"
- ) {
- this.$router.push({
- path: "StLeagueList",
- query: {
- game_code: ball,
- leagueID: sessionId,
- name: this.name,
- home: 1,
- matchDate: this.datetimeNum,
- navBall: "2",
- code: code,
- strType: this.listnum,
- champion: 1
- }
- });
- } else {
- this.$router.push({
- path: "StLeagueList",
- query: {
- game_code:ball,
- leagueID: sessionId,
- name: this.name,
- home: 1,
- matchDate: this.datetimeNum,
- navBall: "2",
- code: code,
- strType: this.listnum
- }
- });
- }
- } else {
- if(this.$store.getters.getActivity == 'StMorningPlate' && ball == 'zq'){
- this.$router.push({
- path: "StLeagueList",
- query: {
- game_code: ball,
- leagueID: sessionId,
- name: this.name,
- home: 1,
- matchDate: this.datetimeNum,
- navBall: "2",
- code: code
- }
- });
- }else if(this.$store.getters.getActivity == 'StMorningPlate' && ball != 'zq'){
- this.$router.push({
- path: "StLeagueList",
- query: {
- game_code: ball,
- leagueID: sessionId,
- name: this.name,
- home: 1,
- matchDate: this.arr[0].title,
- navBall: "2",
- code: code
- }
- });
- }
- else{
- this.$router.push({
- path: "StLeagueList",
- query: {
- game_code: ball,
- leagueID: sessionId,
- name: this.name,
- home: 1,
- navBall: "2",
- code: code
- }
- });
- }
- }
- }
- },
- // 返回上一层页面
- isreturn() {
- history.go(-1);
- }
- },
- mounted() {
- let ball = this.$store.getters.getBallId;
- if (this.getIsShow) {
- this.$store.dispatch("GETSHOW", true);
- this.getIsShow = false;
- }
- //分球的类型获取默认数据
- this.active = 0;
- // this.$store.dispatch("GETSHOW", true);
- this.fun_date();
- this.serchTime = this.arr[0].title;
- this.datetimeNum = this.arr[0].title;
- if(this.$store.getters.getActivity == 'StMorningPlate'){
- this.getAjaxInfo('','',this.serchTime);
- if(ball == 'zq'){
- this.dayShow = true;
- }else{
- this.dayShow = false;
- }
- }else{
- this.getAjaxInfo();
- }
- // this.getAjaxInfo();
- // if (sessionStorage.getItem("active")) {
- // this.listnum = sessionStorage.getItem("active");
- // } else {
- // this.listnum = 0;
- // }
- // 判断冠军跳转
- if (this.$store.getters.getActivity == "StChampion") {
- this.str_type = true;
- } else {
- this.str_type = false;
- // if (this.$store.getters.getActivity == "StMorningPlate") {
- // this.dayShow = true;
- // this.getAjaxInfo('','',this.serchTime)
- // console.log("1")
- // } else {
- // console.log("2")
- // this.dayShow = false;
- // this.getAjaxInfo();
- // }
- }
- if (this.listnum != 1) {
- this.entryShow = true;
- }
- let _this = this;
- // 判断4种玩法的轮询
- if (
- this.$store.getters.getActivity == "StToday" ||
- this.$store.getters.getActivity == "StStringScene" ||
- this.$store.getters.getActivity == "StChampion"
- ) {
- this.$public.ajaxTimerFun(function(timing) {
- if (_this.timers) {
- _this.getAjaxInfo();
- } else {
- clearInterval(timing);
- }
- },(1000*180));
- } else if (this.$store.getters.getActivity == "StMorningPlate") {
- this.$public.ajaxTimerFun(function(timing) {
- if (_this.timers) {
- _this.getAjaxInfo("", "", _this.datetimeNum);
- } else {
- clearInterval(timing);
- }
- },(1000*180));
- }
- },
- computed: {
- getActivity: function() {
- if (
- this.$store.getters.getActivity == "StChampion" ||
- this.$store.getters.getActivity == "StMorningPlate" ||
- this.$store.getters.getActivity == "StToday"
- ) {
- this.isShow = false;
- } else {
- this.isShow = true;
- // 判断位串场的时候则传值type到下一个页面
- }
- // 当别名改变时,修改状态
- // if (sessionStorage.getItem("ballId")) {
- // if (sessionStorage.getItem("active")) {
- // sessionStorage.removeItem("active");
- // this.listnum = 0;
- // } else {
- // }
- // }
- this.listnum = 0;
- return this.$store.getters.getActivity;
- },
- getBallId(){
- return this.$store.getters.getBallId;
- }
- },
- watch: {
- getActivity(val) {
- console.log('val',val)
- if(val == 'StMorningPlate'){
- this.getAjaxInfo('','',this.serchTime);
- }else{
- this.getAjaxInfo();
- }
- this.timers = false;
- let _this = this;
- // 判断是不是早盘,是则显示时间条
- if (this.$store.getters.getActivity == "StMorningPlate") {
- this.timers = true;
- this.$public.ajaxTimerFun(function(timing) {
- if (_this.timers) {
- _this.getAjaxInfo("", "", _this.datetimeNum);
- } else {
- clearInterval(timing);
- }
- },(1000*180));
- this.dayShow = true;
- } else {
- this.dayShow = false;
- }
- if (this.$store.getters.getActivity != "StStringScene") {
- this.entryShow = true;
- } else if (this.listnum != 1) {
- this.entryShow = true;
- } else {
- this.entryShow = false;
- this.timers = true;
- this.$public.ajaxTimerFun(function(timing) {
- if (_this.timers) {
- _this.getAjaxInfo("", "", "", _this.listnum);
- } else {
- clearInterval(timing);
- }
- },(1000*180));
- }
- // 轮询造轮子
- if (
- this.$store.getters.getActivity == "StToday" ||
- this.$store.getters.getActivity == "StChampion"
- ) {
- this.timers = true;
- this.$public.ajaxTimerFun(function(timing) {
- if (_this.timers) {
- _this.getAjaxInfo();
- } else {
- clearInterval(timing);
- }
- },(1000*180));
- }
- },
- getBallId(val){
- // this.serchTime = this.arr[0].title;
- if (this.$store.getters.getActivity == "StMorningPlate") {
- if(val == 'zq'){
- this.dayShow = true;
- this.getAjaxInfo('','',this.serchTime)
- }else{
- this.dayShow = false;
- this.getAjaxInfo('','',this.arr[0].title)
- }
- } else {
- this.dayShow = false;
- this.getAjaxInfo();
- }
- }
- },
- beforeDestroy() {
- this.timers = false;
- }
- };
- </script>
- <style scoped>
- .act {
- transform: rotate(180deg);
- transition: 0.2s;
- }
- .return {
- transform: rotate(0deg);
- transition: 0.2s;
- }
- .Serch {
- height: 0.88rem;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background: linear-gradient(to bottom, #6a6a6a, #565656);
- color: #f76649;
- font-family: "PingFang-SC-Regular";
- padding: 0 0.3rem;
- }
- .returnimg {
- width: 0.37rem;
- height: 0.3rem;
- margin-right: 0.1rem;
- }
- .Serch-box {
- display: flex;
- align-items: center;
- }
- .Serch-box-input {
- width: 3.8rem;
- border: none;
- position: absolute;
- height: 0.44rem;
- line-height: 0.44rem;
- left: 0.5rem;
- color: #aaa;
- }
- .Serch-box-img {
- width: 0.3rem;
- height: 0.3rem;
- position: absolute;
- left: 0.1rem;
- top: 0.06rem;
- }
- .Serch-box-del {
- width: 0.2rem;
- height: 0.2rem;
- position: absolute;
- right: 0.2rem;
- }
- .Serch-box-home {
- height: 0.45rem;
- line-height: 0.45rem;
- width: 4.73rem;
- background: #e4e4e4;
- border-radius: 0.2rem;
- display: flex;
- justify-content: space-around;
- align-items: center;
- padding-left: 0.1rem;
- padding-right: 0.1rem;
- position: relative;
- }
- .Soccer-game-title {
- height: 0.88rem;
- font-size: 0.3rem;
- }
- .Soccer-game-box {
- height: 0.88rem;
- /* padding: 0 0.32rem; */
- background-color: #626262;
- }
- .Soccer-game-box > p {
- margin: 0.3rem;
- color: #a6a6a6;
- }
- .Soccer-game-box p.active {
- color: #f76649;
- }
- .Soccer-game-src {
- width: 0.25rem;
- height: 0.15rem;
- /* margin-left: 0.3rem; */
- }
- .box {
- background: #ebebeb;
- padding: 0 0.14rem;
- height: 0.8rem;
- }
- #NavSlide {
- width: 100%;
- height: .8rem;
- overflow: hidden;
- background: #ebebeb;
- }
- #NavSlide nav {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: middle;
- -ms-flex-align: middle;
- align-items: middle;
- overflow: auto;
- background: #ebebeb;
- }
- #NavSlide p {
- text-align: center;
- font-size: 0.28rem;
- -ms-flex-negative: 0;
- flex-shrink: 0;
- padding: 0 0.1rem;
- margin: 0 0.05rem;
- color: #b8b8b8;
- height: 0.8rem;
- line-height: 0.8rem;
- }
- /* #NavSlide p a{
- color: #E5E5E5;
- text-decoration: none;
- } */
- #NavSlide p span.active {
- color: #363636;
- }
- .yd-cell-box .yd-cell {
- z-index: 99;
- border-radius: 0.2rem;
- }
- .matchBox {
- margin-bottom: 0.12rem;
- background: #f9f9f9;
- padding: 0.27rem 0.34rem 0 0.32rem;
- }
- div /deep/ .yd-accordion-head {
- padding: 0 0.13rem 0 0;
- }
- div /deep/ .yd-accordion-content:after {
- height: 0;
- }
- .match .tit {
- display: flex;
- justify-content: space-between;
- font-size: 0.32rem;
- margin-bottom: 0.3rem;
- }
- .match .list {
- overflow: hidden;
- transition: all 0.3s cubic-bezier(0.4, 0.6, 0.2, 1);
- }
- .match .list div {
- background: #dcdcdc;
- width: 100%;
- height: 0.88rem;
- padding: 0.26rem 0.56rem 0.3rem 0.3rem;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-radius: 0.08rem;
- margin-bottom: 0.12rem;
- }
- div /deep/ .yd-accordion-head:after {
- height: 0;
- }
- .match .list span {
- color: #333333;
- font-size: 0.28rem;
- }
- .match .list .num {
- width: 0.4rem;
- height: 0.4rem;
- display: inline-block;
- line-height: 0.4rem;
- text-align: center;
- color: #f5f5f5;
- border-radius: 50%;
- font-size: 0.2rem;
- background: #f76649;
- }
- .yd-accordion {
- background: transparent;
- }
- .match .list div:nth-last-child(1) {
- margin-bottom: 0.34rem;
- }
- div /deep/ .yd-accordion-head,
- div /deep/ .yd-accordion-head-content,
- div /deep/ .yd-accordion-title,
- div /deep/ .yd-accordion-title-full {
- height: 0.3rem;
- }
- div /deep/ .yd-accordion-title {
- min-height: 0;
- }
- div /deep/ .yd-accordion-head {
- margin-bottom: 0.3rem;
- }
- div /deep/ .yd-accordion-head-arrow:after {
- border: none;
- width: 0.4rem;
- height: 0.4rem;
- background: url("../assets/st-imges/xiangxia.png") no-repeat;
- background-size: 0.4rem 0.4rem;
- }
- /* 参赛表 */
- .entry .list {
- height: 0.88rem;
- padding: 0.2rem;
- width: 100%;
- background: #a0a0a0;
- color: #fefefe;
- display: flex;
- justify-content: space-between;
- border-bottom: 1px solid #aaa;
- }
- .entry .list .num {
- width: 0.4rem;
- height: 0.4rem;
- display: inline-block;
- line-height: 0.4rem;
- text-align: center;
- color: #f5f5f5;
- border-radius: 50%;
- font-size: 0.2rem;
- background: #f76649;
- }
- </style>
|