This commit is contained in:
2022-10-15 14:06:55 +08:00
parent f2f04ca21e
commit 08d1d2ba58

View File

@@ -41,7 +41,7 @@
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i">
<tr v-for="(e, i) in dataList" :key="i" :class="['bgred', 'bgyellow'][Number(e.color_type) - 1]">
<td>{{e.container_name}}</td>
<td>{{e.up_coiler_date}}</td>
<td>{{e.end_date}}</td>
@@ -112,4 +112,9 @@
position sticky
left 89rpx
z-index 102
.bgred td
background-color #ff6a00
color #ffffff
.bgyellow td
background-color #E9B451
</style>