修改对局列表颜色标识
This commit is contained in:
parent
b313f11eb4
commit
2b273a6ba6
|
@ -5,9 +5,9 @@
|
||||||
<!-- <table class="table table-sm" style="text-align:center"> -->
|
<!-- <table class="table table-sm" style="text-align:center"> -->
|
||||||
<!-- 创建表头: th 表示列 -->
|
<!-- 创建表头: th 表示列 -->
|
||||||
<thead>
|
<thead>
|
||||||
<th>玩家A</th>
|
<th style="color: #4876ec">玩家A</th>
|
||||||
<th>玩家B</th>
|
<th style="color: #f94848">玩家B</th>
|
||||||
<th>赢家</th>
|
<th style="color: #FFD700">赢家</th>
|
||||||
<th>对局时间</th>
|
<th>对局时间</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -17,12 +17,12 @@
|
||||||
<td>
|
<td>
|
||||||
<img :src="record.a_photo" alt="" class="record-user-photo">
|
<img :src="record.a_photo" alt="" class="record-user-photo">
|
||||||
|
|
||||||
<span class="record-user-username"> {{ record.a_username }}</span>
|
<span class="record-user-username" style="color: #4876ec"> {{ record.a_username }}</span>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<img :src="record.b_photo" alt="" class="record-user-photo">
|
<img :src="record.b_photo" alt="" class="record-user-photo">
|
||||||
|
|
||||||
<span class="record-user-username"> {{ record.b_username }}</span>
|
<span class="record-user-username" style="color: #f94848"> {{ record.b_username }}</span>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ record.winner }}
|
{{ record.winner }}
|
||||||
|
|
Loading…
Reference in New Issue