|
|
@@ -32,6 +32,7 @@ const chartInstance = shallowRef() // 图表实例
|
|
|
|
|
|
// 是否掉期模式
|
|
|
const isTradeMode99 = computed(() => goods.value?.trademode === 99)
|
|
|
+const isTradeMode10 = computed(() => goods.value?.trademode === 10)
|
|
|
|
|
|
const classNames = computed(() => {
|
|
|
const result = ['app-timeline']
|
|
|
@@ -93,7 +94,7 @@ const chartOption = {
|
|
|
{ Text: '价:' + handleNumberValue(Close.toFixed(decimalplace)), Color: paint.GetColor(Open, YClose || Open) },
|
|
|
{ Text: '幅:' + Increase.toFixed(2) + '%', Color: paint.GetColor(Increase, 0) }
|
|
|
]
|
|
|
- if (!isTradeMode99.value) {
|
|
|
+ if (!isTradeMode99.value && !isTradeMode10.value) {
|
|
|
AryText.push(
|
|
|
{ Text: '量:' + changeUnit(Vol), Color: paint.VolColor },
|
|
|
{ Text: '额:' + changeUnit(Amount), Color: paint.AmountColor }
|