|
|
@@ -5,7 +5,7 @@
|
|
|
</div>
|
|
|
<el-scrollbar class="block-right">
|
|
|
<Price v-bind="{ goodsCode }" />
|
|
|
- <Forex v-if="quote?.trademode != 10" v-bind="{ goodsCode }" />
|
|
|
+ <Forex v-if="![10, 53].includes(trademode)" v-bind="{ goodsCode }" />
|
|
|
<Tik v-bind="{ goodsCode }" />
|
|
|
</el-scrollbar>
|
|
|
</div>
|
|
|
@@ -27,7 +27,7 @@ const props = defineProps({
|
|
|
})
|
|
|
|
|
|
const futuresStore = useFuturesStore()
|
|
|
-const quote = futuresStore.getGoodsQuote(props.goodsCode)
|
|
|
+const { trademode = 10 } = futuresStore.getGoodsQuote(props.goodsCode).value ?? {}
|
|
|
|
|
|
</script>
|
|
|
|