| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- <template>
- <div>
- <div v-if="isData">
- <div class="tit">
- <span>首粒入球/最后一粒入球</span>
- </div>
- <div class="playCode">
- <div class="tbody">
- <div>最先进球</div>
- <div>最后进球</div>
- <div>没有进球</div>
- </div>
- <div class="info">
- <div class="before">
- <div
- class="team"
- v-for="(item,index) in data"
- v-if="item.odds_code == 'flbfh'"
- >
- <span class="teamName">{{home_team}}</span>
- <span
- class="odds"
- :class="{chooseStyle:item.isTrue,rising:item.change == 'rising',falling:item.change == 'falling'}"
- @click="betMethod(index,item.id,home_team,'最先进球')"
- >{{item.odds}}</span>
- </div>
- <div
- class="team"
- v-for="(item,index) in data"
- v-if="item.odds_code == 'flbfg'"
- >
- <span class="teamName">{{guest_team}}</span>
- <span
- class="odds"
- :class="{chooseStyle:item.isTrue,rising:item.change == 'rising',falling:item.change == 'falling'}"
- @click="betMethod(index,item.id,guest_team,'最先进球')"
- >{{item.odds}}</span>
- </div>
- </div>
- <div class="after">
- <div
- class="team"
- v-for="(item,index) in data"
- v-if="item.odds_code == 'flblh'"
- >
- <span class="teamName">{{home_team}}</span>
- <span
- class="odds"
- :class="{chooseStyle:item.isTrue,rising:item.change == 'rising',falling:item.change == 'falling'}"
- @click="betMethod(index,item.id,home_team,'最后进球')"
- >{{item.odds}}</span>
- </div>
- <div
- class="team"
- v-for="(item,index) in data"
- v-if="item.odds_code == 'flblg'"
- >
- <span class="teamName">{{guest_team}}</span>
- <span
- class="odds"
- :class="{chooseStyle:item.isTrue,rising:item.change == 'rising',falling:item.change == 'falling'}"
- @click="betMethod(index,item.id,guest_team,'最后进球')"
- >{{item.odds}}</span>
- </div>
- </div>
- <div class="notHave row item-center">
- <div
- class="team"
- v-for="(item,index) in data"
- v-if="item.odds_code == 'flbn'"
- >
- <span class="teamName">没有进球</span>
- <span
- class="odds"
- :class="{chooseStyle:item.isTrue,rising:item.change == 'rising',falling:item.change == 'falling'}"
- @click="betMethod(index,item.id,'','没有进球')"
- >{{item.odds}}</span>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- title: "FLB",
- data: [], //数据源
- isData: "", //是否有数据
- guest_team: "", //客队名
- home_team: "", //主队名
- // obj:'',//
- match_id: "",
- limit: "", //投注数量
- lg_id: ""
- };
- },
- /***
- * 方法
- */
- methods: {
- //玩法分类
- playGrouping(data) {
- // let obj={};
- let betting = this.$store.getters.getBetting;
- data.forEach(e => {
- if(betting.length > 0){
- for(let i= 0; i< betting.length; i++){
- if(betting[i].title =="FLB" && betting[i].data.length >0){
- for(let j = 0 ; j < betting[i].data.length ; j++ ){
- if(betting[i].data[j].id == e.id){
- this.$set(e,'isTrue',true);
- //betting[i].data.splice(j,1);
- }
- }
- break;
- }
- }
- }
-
- e.lg_id = this.lg_id;
- // if(e.odds_code.startsWith('last_number')){
- // obj.a= true
- // }else if(e.odds_code.startsWith('half')){
- // obj.b= true;
- // }
- });
- // this.obj = obj;
- },
- /*---------------------------------- */
- //玩法投注
- betMethod(index, id, name, playName) {
- if (this.data[index].isTrue) {
- this.$set(this.data[index], "isTrue", false);
- } else {
- this.$set(this.data[index], "isTrue", true);
- }
- //调用投注公共方法
- let betting = this.$store.getters.getBetting;
- let _this = this;
- let ballId = this.$store.getters.getBallCode;
- let teamName = {
- home: this.home_team,
- guest: this.guest_team
- };
- this.$public.publicBetMethod(
- this.data,
- this.title,
- id,
- index,
- betting,
- teamName,
- playName,
- name,
- this.match_id,
- ballId,
- this.limit,
- function(data, type) {
- _this.$store.dispatch("SET_BETTING", []);
- _this.$store.dispatch("SET_BETTING", data);
- }
- );
- }
- },
- /**
- * 计算属性
- */
- computed: {
- getGameRatio() {
- return this.$store.getters.getGameRatio;
- },
- //获取投注数据
- getBetting() {
- return this.$store.getters.getBetting;
- },
- //获取投注数据数量
- getLimit() {
- return this.$store.getters.getLimit;
- }
- },
- /**
- * 监听器
- */
- watch: {
- getGameRatio(val) {
- this.lg_id = val.lg_id;
- this.match_id = val.match_id;
- this.guest_team = val.guest_team;
- this.home_team = val.home_team;
- val.oddsData.forEach(e => {
- if (e[0].p_code == this.title) {
- this.data = e;
- this.isData = true;
- this.playGrouping(this.data);
- }
- });
- //console.log(this.data);
- },
- //投注数据监听和处理
- getBetting(val) {
- if (val.length > 0) {
- let id = this.$store.getters.getDeleteType;
- for (let i = 0; i < val.length; i++) {
- if (val[i].title == this.title) {
- for (let j = 0; j < this.data.length; j++) {
- if (this.data[j].id == id) {
- this.$set(this.data[j], "isTrue", false);
- break;
- }
- }
- break;
- }
- }
- } else {
- for (let j = 0; j < this.data.length; j++) {
- if (this.data[j].isTrue) {
- this.$set(this.data[j], "isTrue", false);
- }
- }
- }
- },
- //投注数量
- getLimit(val) {
- this.limit = val;
- }
- }
- };
- </script>
- <style scoped>
- .flex {
- display: flex;
- /* justify-content: space-between; */
- align-items: center;
- flex-direction: row;
- flex-wrap: wrap;
- }
- .rFlex {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .tit {
- background: #cdcdcd;
- font-size: 0.14rem;
- padding: 0 0.1rem;
- height: 0.4rem;
- line-height: 0.4rem;
- color: #333;
- }
- .playCode {
- background: #fff;
- }
- .tbody {
- height: 0.4rem;
- line-height: 0.4rem;
- background-color: #e5e5e5;
- color: rgb(90, 90, 90);
- text-align: left;
- display: flex;
- }
- .tbody div {
- font-size: 0.14rem;
- padding-left: 0.1rem;
- flex: 1 1 0%;
- display: flex;
- /* justify-content: center; */
- }
- .info {
- display: flex;
- flex-direction: row;
- align-items: center;
- height: 100%;
- }
- .info .before,
- .after,
- .notHave {
- flex: 1 1 0%;
- flex-direction: column;
- }
- .team {
- display: flex;
- justify-content: space-between;
- flex: 1 1 0%;
- height: 0.4rem;
- font-size: 0.14rem;
- padding: 0 0.1rem;
- align-items: center;
- border-bottom: 1px solid #d7d7d7;
- line-height: 0.4rem;
- }
- .odds {
- display: inline-block;
- width: 0.48rem;
- height: 0.3rem;
- border: 0.01rem solid #ccc;
- line-height: 0.3rem;
- text-align: center;
- border-radius: 0.05rem;
- cursor: pointer;
- }
- .odds:hover {
- background: #ddd;
- color: #f76649;
- }
- .after {
- border-left: 1px solid #d7d7d7;
- border-right: 1px solid #d7d7d7;
- }
- .notHave {
- height: 0.8rem;
- }
- .notHave .team {
- border: none;
- width: 100%;
- }
- .team:hover {
- background: #fff5e9;
- }
- .notHave .team:hover {
- background: #fff;
- }
- .after .team:nth-last-child(1),
- .before .team:nth-last-child(1) {
- border-bottom: none;
- }
- </style>
|