huangbin 4 年之前
父節點
當前提交
dd61209c23

+ 1 - 1
src/views/market/spot_trade/warehouse_pre_sale/warehouse_pre_sale_blocs/components/delisting/index.vue

@@ -216,7 +216,7 @@ export default defineComponent({
         function getMoney() {
             const price = isBargin() ? formState.price : props.selectedRow.fixedprice;
             if (price) {
-                return (price * formState.num).toFixed(2);
+                return (price * props.selectedRow.orderqty).toFixed(2);
             } else {
                 return '--';
             }

+ 1 - 1
src/views/market/spot_trade/warehouse_receipt_trade/warehouse_receipt_trade_blocs/components/delisting/index.vue

@@ -216,7 +216,7 @@ export default defineComponent({
         function getMoney() {
             const price = isBargin() ? formState.price : props.selectedRow.fixedprice;
             if (price) {
-                return (price * formState.num).toFixed(2);
+                return (price * props.selectedRow.orderqty).toFixed(2);
             } else {
                 return '--';
             }