|
|
@@ -170,7 +170,15 @@ export function parseReceivePush(quotationData: any) {
|
|
|
|
|
|
// !goodsQuoteTik.bidvolume && (goodsQuoteTik.bidvolume = '--')
|
|
|
// !goodsQuoteTik.askvolume && (goodsQuoteTik.askvolume = '--')
|
|
|
- !goodsQuoteTik.lastvolume && (goodsQuoteTik.lastvolume = '--')
|
|
|
+ // !goodsQuoteTik.lastvolume && (goodsQuoteTik.lastvolume = '--')
|
|
|
+ // 实时行情由于行情源的问题可能不会下发现量,这时用盘面的总量来计算
|
|
|
+ if (!goodsQuoteTik.lastvolume) {
|
|
|
+ if (itemQuote.totalvolume) {
|
|
|
+ goodsQuoteTik.lastvolume = goodsQuoteTik.totalvolume - itemQuote.totalvolume;
|
|
|
+ } else {
|
|
|
+ goodsQuoteTik.lastvolume = "--";
|
|
|
+ }
|
|
|
+ }
|
|
|
!goodsQuoteTik.holdvolume && (goodsQuoteTik.holdvolume = '--')
|
|
|
!goodsQuoteTik.holdincrement && (goodsQuoteTik.holdincrement = '--')
|
|
|
// !goodsQuoteTik.totalturnover && (goodsQuoteTik.totalturnover = '--')
|