|
|
@@ -13,7 +13,7 @@
|
|
|
<Cell title="订单重量"
|
|
|
:value="(selectedRow.openqty * selectedRow.agreeunit) + getGoodsUnitName(selectedRow.goodunitid)" />
|
|
|
<Cell title="可用量" :value="enableqty(selectedRow) + getGoodsUnitName(selectedRow.goodunitid)" />
|
|
|
- <Cell title="订单价格" :value="selectedRow.openprice" />
|
|
|
+ <Cell title="订单价格" :value="formatDecimal(selectedRow.openprice, selectedRow.decimalplace)" />
|
|
|
<Cell title="已付定金" :value="selectedRow.payeddeposit" />
|
|
|
<Cell title="终止结余" :value="selectedRow.closepl" />
|
|
|
<Cell title="已补定金" :value="selectedRow.restockdeposit" />
|
|
|
@@ -29,6 +29,7 @@
|
|
|
<script lang="ts" setup>
|
|
|
import { shallowRef, PropType } from 'vue'
|
|
|
import { CellGroup, Cell } from 'vant'
|
|
|
+import { formatDecimal } from '@/filters'
|
|
|
import { BuyOrSell } from '@/constants/order'
|
|
|
import AppModal from '@/components/base/modal/index.vue'
|
|
|
import { getGoodsUnitName } from '@/constants/unit'
|