|
|
|
@ -52,7 +52,7 @@ |
|
|
|
<td>{{ item.realtimePrice }}</td> |
|
|
|
<td>{{ item.flatPrice }}</td> |
|
|
|
<td :class="item.unRealProfit>0?'increace':item.unRealProfit<0?'decreace':''">{{ (parseFloat(item.unRealProfit)).toFixed(2) }}</td> |
|
|
|
<td>{{ item.profitRate }}</td> |
|
|
|
<td :class="item.unRealProfit>0?'increace':item.unRealProfit<0?'decreace':''">{{ item.profitRate }}</td> |
|
|
|
<td>{{ item.tpPrice || "--" }}/{{ item.slPrice || "--" }}</td> |
|
|
|
<td> |
|
|
|
<button |
|
|
|
@ -624,7 +624,7 @@ export default { |
|
|
|
}, |
|
|
|
}; |
|
|
|
</script> |
|
|
|
<style scoped"> |
|
|
|
<style scoped> |
|
|
|
.increace{ |
|
|
|
color: #53b987; |
|
|
|
} |
|
|
|
|