Handy_Cao 2 viikkoa sitten
vanhempi
commit
21cf5129d0

+ 1 - 0
src/packages/mobile/views/order/list/components/goodstrade/detail/Index.vue

@@ -13,6 +13,7 @@
                     <Cell :title="$t('order.goodstrade.tradeqty')" :value="selectedRow.tradeqty" />
                     <Cell :title="$t('order.goodstrade.tradeprice')" :value="formatDecimal(selectedRow.tradeprice)" />
                     <Cell :title="$t('order.goodstrade.charge')" :value="formatDecimal(selectedRow.charge)" />
+                    <Cell :title="$t('order.goodstrade.initFeeValue')" :value="formatDecimal(selectedRow.initfeevalue)" />
                     <Cell :title="$t('order.goodstrade.closepl')" :value="formatDecimal(selectedRow.closepl)" />
                     <!-- <Cell title="成交对手" :value="tmMatchAccountID(selectedRow.matchaccountid)" /> -->
                     <Cell :title="$t('order.goodstrade.tradetime')" :value="formatDate(selectedRow.tradetime)" />

+ 1 - 1
src/stores/modules/futures.ts

@@ -239,7 +239,7 @@ export const useFuturesStore = defineStore(() => {
     // 获取商品国际化名称
     const getI18nGoodsName = (code: string | number) => {
         const item = getGoods(code)
-         switch (i18n.global.locale) {
+        switch (i18n.global.locale) {
             case 'zh-CN':
                 return item?.goodsname ?? ''
             case 'en-US':