|
@@ -14,6 +14,14 @@
|
|
|
<template #totalturnover="{ text }">
|
|
<template #totalturnover="{ text }">
|
|
|
<span>{{ changeUnit(text) }}</span>
|
|
<span>{{ changeUnit(text) }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+ <!-- 买量 -->
|
|
|
|
|
+ <template #bidvolume="{ text }">
|
|
|
|
|
+ <span>{{ handleNoneValue(text) }}</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <!-- 卖量 -->
|
|
|
|
|
+ <template #askvolume="{ text }">
|
|
|
|
|
+ <span>{{ handleNoneValue(text) }}</span>
|
|
|
|
|
+ </template>
|
|
|
<!-- 涨跌 -->
|
|
<!-- 涨跌 -->
|
|
|
<template #change="{ record }">
|
|
<template #change="{ record }">
|
|
|
<span>{{ quoteChange(record, record.decimalplace) }}</span>
|
|
<span>{{ quoteChange(record, record.decimalplace) }}</span>
|
|
@@ -68,7 +76,7 @@ import { contextMenu, defineAsyncComponent, defineComponent } from '@/common/exp
|
|
|
|
|
|
|
|
import { handleDeliveryRelation } from '../setup';
|
|
import { handleDeliveryRelation } from '../setup';
|
|
|
|
|
|
|
|
-import { handleSubcriteOnDemandQuote, handleQuotePriceColor, quoteChange, quoteAmplitude, quoteAmplituOfVibration } from '@/common/setup/table/tableQuote';
|
|
|
|
|
|
|
+import { handleSubcriteOnDemandQuote, handleQuotePriceColor, quoteChange, quoteAmplitude, quoteAmplituOfVibration, handleNoneValue } from '@/common/setup/table/tableQuote';
|
|
|
import { QueryDeliveryRelationRsp } from '@/services/go/delivery/interface';
|
|
import { QueryDeliveryRelationRsp } from '@/services/go/delivery/interface';
|
|
|
import { columnsList } from '../setup';
|
|
import { columnsList } from '../setup';
|
|
|
|
|
|
|
@@ -118,6 +126,7 @@ export default defineComponent({
|
|
|
findDeilverGoodsByGoodsCode,
|
|
findDeilverGoodsByGoodsCode,
|
|
|
goodsList,
|
|
goodsList,
|
|
|
loading,
|
|
loading,
|
|
|
|
|
+ handleNoneValue,
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
});
|
|
});
|