|
|
@@ -4,7 +4,7 @@
|
|
|
<app-table class="sell" :data="sellList" v-model:columns="sellColumns" >
|
|
|
<!-- 价格 -->
|
|
|
<template #orderprice="{ row }">
|
|
|
- <span>{{ row.pricemode === 3 ? estimateprice(row) : row.orderprice }}</span>
|
|
|
+ <span :class="quote?.lastColor">{{ row.pricemode === 3 ? estimateprice(row) : row.orderprice }}</span>
|
|
|
</template>
|
|
|
<!-- 操作 -->
|
|
|
<template #operate="{ row }">
|
|
|
@@ -15,7 +15,7 @@
|
|
|
<app-table class="buy" :data="buyList" v-model:columns="buyColumns">
|
|
|
<!-- 价格 -->
|
|
|
<template #orderprice="{ row }">
|
|
|
- <span>{{ row.pricemode === 3 ? estimateprice(row) : row.orderprice }}</span>
|
|
|
+ <span :class="quote?.lastColor">{{ row.pricemode === 3 ? estimateprice(row) : row.orderprice }}</span>
|
|
|
</template>
|
|
|
<!-- 操作 -->
|
|
|
<template #operate="{ row }">
|