|
|
@@ -18,7 +18,7 @@
|
|
|
</td>
|
|
|
<td>
|
|
|
<span class="text-small">浮动盈亏</span>
|
|
|
- <span>{{ accountItem.profitLoss }}</span>
|
|
|
+ <span>{{ formatDecimal(accountItem.profitLoss) }}</span>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
@@ -72,6 +72,7 @@ import ContractOrder from '../components/order/index.vue'
|
|
|
import ContractTrade from '../components/trade/index.vue'
|
|
|
import ContractPosition from '../components/position/index.vue'
|
|
|
import ContractStatement from '../components/statement/index.vue'
|
|
|
+import { formatDecimal } from '@/filters'
|
|
|
|
|
|
const { router, getQueryStringToNumber } = useNavigation()
|
|
|
|