|
@@ -1,17 +1,19 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div class="components LanQiuGuoGuanHunHeTouZhu">
|
3
|
3
|
<ul>
|
4
|
|
- <li v-for="(item, index) in PageData" :key="index" v-if="item.playOdds[`bst-wl`] !== undefined && item.playOdds[`bst-wls`] !== undefined && item.matchWay[`bst-wl`].isPass && item.matchWay[`bst-wls`].isPass">
|
5
|
|
- <div class="Title flex-h">
|
6
|
|
- <div class="flex-item">
|
7
|
|
- <div>
|
8
|
|
- <span>{{item.awayTeamName}} VS {{item.homeTeamName}}</span>
|
|
4
|
+ <li v-for="(item, index) in PageData" :key="index">
|
|
5
|
+ <div v-if="item.playOdds[`bst-wl`] !== undefined && item.playOdds[`bst-wls`] !== undefined && item.matchWay[`bst-wl`].isPass && item.matchWay[`bst-wls`].isPass">
|
|
6
|
+ <div class="Title flex-h">
|
|
7
|
+ <div class="flex-item">
|
|
8
|
+ <div>
|
|
9
|
+ <span>{{item.awayTeamName}} VS {{item.homeTeamName}}</span>
|
|
10
|
+ </div>
|
9
|
11
|
</div>
|
|
12
|
+ <span>{{item.leagueName}}<em>{{item.matchTime}}(截)</em></span>
|
|
13
|
+ </div>
|
|
14
|
+ <div class="Detail">
|
|
15
|
+ <LqgghhtzShengFu :MoreSelect="item.MoreSelect" :Id="item.matchId" :ListId="item.matchWeek" :HomeTeamName="item.homeTeamName" :AwayTeamName="item.awayTeamName" :HomeTeamId="item.homeTeamId" :AwayTeamId="item.awayTeamId" :Index="index" :WlData="item.playOdds['bst-wl']" :WlsData="item.playOdds['bst-wls']" @SelectItem="SelectItem" @ShowMore="ToShowMore"></LqgghhtzShengFu>
|
10
|
16
|
</div>
|
11
|
|
- <span>{{item.leagueName}}<em>{{item.matchTime}}(截)</em></span>
|
12
|
|
- </div>
|
13
|
|
- <div class="Detail">
|
14
|
|
- <LqgghhtzShengFu :MoreSelect="item.MoreSelect" :Id="item.matchId" :ListId="item.matchWeek" :HomeTeamName="item.homeTeamName" :AwayTeamName="item.awayTeamName" :HomeTeamId="item.homeTeamId" :AwayTeamId="item.awayTeamId" :Index="index" :WlData="item.playOdds['bst-wl']" :WlsData="item.playOdds['bst-wls']" @SelectItem="SelectItem" @ShowMore="ToShowMore"></LqgghhtzShengFu>
|
15
|
17
|
</div>
|
16
|
18
|
</li>
|
17
|
19
|
</ul>
|