28f68009 by lihua

fix

1 parent e91c5e17
......@@ -1509,7 +1509,7 @@ const timeRangeInfo = computed(() => {
});
const prcieInfo = computed(() => {
// 还需要把flowDetail.value.productPrice 拼接priceUnitList.value.find(item => item.value == flowDetail.value.priceUnit)?.label
return flowDetail.value.productPrice ? `${changeNum(parseInt(flowDetail.value.productPrice), 2)} ${priceUnitList.value.find(item => item.value == flowDetail.value.priceUnit)?.label}` : '--';
return flowDetail.value.productPrice ? `${changeNum(parseFloat(flowDetail.value.productPrice), 2)} ${priceUnitList.value.find(item => item.value == flowDetail.value.priceUnit)?.label}` : '--';
})
const toolBtns: any = computed(() => {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!