|
|
@ -30,7 +30,7 @@ |
|
|
|
:key="index + '12'" |
|
|
|
>{{ item.TotalPurchasePrice }} |
|
|
|
{{ |
|
|
|
index == accountInfo.TotalPurchaseInfoList.length - 1 ? "" : "---" |
|
|
|
index == accountInfo.TotalPurchaseInfoList.length - 1 ? "" : "→" |
|
|
|
}}</span |
|
|
|
> |
|
|
|
</p> |
|
|
@ -80,11 +80,62 @@ |
|
|
|
</p> |
|
|
|
|
|
|
|
<p>历史周转资金: {{ accountInfo.RealCost }}</p> |
|
|
|
|
|
|
|
<p v-if="accountInfo.KLineUpRatioList && accountInfo.KLineUpRatioList[0]"> |
|
|
|
K线涨幅榜:<span |
|
|
|
v-for="(item, index) in accountInfo.KLineUpRatioList" |
|
|
|
:key="index + '12'" |
|
|
|
><span class="ratio" v-if="item.Ratio" |
|
|
|
>{{ item.Ratio.toFixed(2) }}%</span |
|
|
|
> |
|
|
|
<span class="time">({{ item.Time }})</span> |
|
|
|
{{ |
|
|
|
index == accountInfo.KLineUpRatioList.length - 1 ? "" : " → " |
|
|
|
}}</span |
|
|
|
> |
|
|
|
</p> |
|
|
|
|
|
|
|
<p |
|
|
|
v-if="accountInfo.KLineLossRatioList && accountInfo.KLineLossRatioList[0]" |
|
|
|
> |
|
|
|
K线跌幅榜:<span |
|
|
|
v-for="(item, index) in accountInfo.KLineLossRatioList" |
|
|
|
:key="index + '12'" |
|
|
|
><span class="ratio" v-if="item.Ratio" |
|
|
|
>{{ item.Ratio.toFixed(2) }}%</span |
|
|
|
> |
|
|
|
<span class="time">({{ item.Time }})</span> |
|
|
|
{{ |
|
|
|
index == accountInfo.KLineLossRatioList.length - 1 ? "" : " → " |
|
|
|
}}</span |
|
|
|
> |
|
|
|
</p> |
|
|
|
|
|
|
|
<p |
|
|
|
v-if="accountInfo.KLineLossRatioList && accountInfo.KLineLossRatioList[0]" |
|
|
|
> |
|
|
|
订单亏损榜:<span |
|
|
|
v-for="(item, index) in accountInfo.LossOrderRankList" |
|
|
|
:key="index + '12'" |
|
|
|
><span class="ratio" v-if="item.Ratio" |
|
|
|
>{{ item.Ratio.toFixed(2) }}%</span |
|
|
|
> |
|
|
|
<span class="time">({{ item.Time }})</span> |
|
|
|
{{ |
|
|
|
index == accountInfo.LossOrderRankList.length - 1 ? "" : " → " |
|
|
|
}}</span |
|
|
|
> |
|
|
|
</p> |
|
|
|
|
|
|
|
<p>购买交易数: {{ accountInfo.PurchaseTradeCount }}</p> |
|
|
|
<p>卖出交易数: {{ accountInfo.SaleTradeCount }}</p> |
|
|
|
|
|
|
|
<p>持仓成本: {{ accountInfo.TotalPurchasePrice }}</p> |
|
|
|
<p>波段盈亏 :{{ accountInfo.HistoryProfit }}</p> |
|
|
|
<p>币本位盈亏: {{ accountInfo.BBWProfit }}</p> |
|
|
|
<p>持币盈亏 : {{ accountInfo.TotalPriceGap }}</p> |
|
|
|
<p>浮动盈亏金额 : {{ accountInfo.TotalPurchasePriceProfit }}</p> |
|
|
|
<p>总借币利息 : {{ accountInfo.TotalBorrowFee }}</p> |
|
|
|
<p>总盈亏 : {{ accountInfo.ZYK }}</p> |
|
|
|
</div> |
|
|
|
</template> |
|
|
@ -99,4 +150,11 @@ export default { |
|
|
|
}; |
|
|
|
</script> |
|
|
|
|
|
|
|
<style></style> |
|
|
|
<style> |
|
|
|
.ratio { |
|
|
|
color: brown; |
|
|
|
} |
|
|
|
.time { |
|
|
|
color: bisque; |
|
|
|
} |
|
|
|
</style> |
|
|
|