Handy_Cao há 2 anos atrás
pai
commit
ea79b91558

+ 2 - 2
src/packages/mobile/views/order/list/components/goodsorder/detail/Index.vue

@@ -11,9 +11,9 @@
                     <Cell title="方向" :value="getBuyOrSellName(selectedRow.buyorsell)" />
                     <Cell title="类型" :value="getBuildTypeName(selectedRow.buildtype)" />
                     <Cell title="挂摘类型" :value="getListingSelectTypeName(selectedRow.listingselecttype)" />
-                    <Cell title="委托数量" :value="formatDecimal(selectedRow.orderqty)" />
+                    <Cell title="委托数量" :value="selectedRow.orderqty" />
                     <Cell title="委托价格" :value="formatDecimal(selectedRow.orderprice)" />
-                    <Cell title="成交数量" :value="formatDecimal(selectedRow.tradeqty)" />
+                    <Cell title="成交数量" :value="selectedRow.tradeqty" />
                     <Cell title="委托状态" :value="getWRTradeOrderStatusName(selectedRow.orderstatus)" />
                     <Cell title="委托时间" :value="formatDate(selectedRow.ordertime)" />
                     <Cell title="委托单号" :value="selectedRow.orderid" />

+ 2 - 2
src/packages/mobile/views/order/list/components/goodsorder/list/Index.vue

@@ -24,7 +24,7 @@
                         </li>
                         <li>
                             <span>委托数量</span>
-                            <span>{{ formatDecimal(item.orderqty) }}</span>
+                            <span>{{ item.orderqty }}</span>
                         </li>
                         <li>
                             <span>委托价格</span>
@@ -32,7 +32,7 @@
                         </li>
                         <li>
                             <span>成交数量</span>
-                            <span>{{ formatDecimal(item.tradeqty) }}</span>
+                            <span>{{ item.tradeqty }}</span>
                         </li>
                     </ul>
                 </div>

+ 6 - 6
src/packages/mobile/views/order/position/components/goods/list/Index.vue

@@ -19,27 +19,27 @@
                     </ul>
                     <ul>
                         <li>
-                            <span>持有数量</span>
+                            <span>持有数量</span>
                             <span>{{ formatDecimal(item.curpositionqty) }}</span>
                         </li>
                         <li>
-                            <span>持仓均价</span>
+                            <span>持仓均价</span>
                             <span>{{ handleNumberValue(formatDecimal(item.averageprice)) }}</span>
                         </li>
                         <li>
-                            <span>冻结数量</span>
+                            <span>冻结数量</span>
                             <span>{{ formatDecimal(item.frozenqty) }}</span>
                         </li>
                         <li>
-                            <span>持仓金额</span>
+                            <span>持仓金额</span>
                             <span>{{ formatDecimal(item.curholderamount) }}</span>
                         </li>
                         <li>
-                            <span>可用数量</span>
+                            <span>可用数量</span>
                             <span>{{ formatDecimal(item.enableqty) }}</span>
                         </li>
                         <li>
-                            <span>参考损益</span>
+                            <span>参考损益</span>
                             <span :class="closepl(item) ? 'g-price-up' : 'g-price-down'">{{ formatDecimal(closepl(item))
                             }}</span>
                         </li>