28f68009 by lihua

fix

1 parent e91c5e17
...@@ -1509,7 +1509,7 @@ const timeRangeInfo = computed(() => { ...@@ -1509,7 +1509,7 @@ const timeRangeInfo = computed(() => {
1509 }); 1509 });
1510 const prcieInfo = computed(() => { 1510 const prcieInfo = computed(() => {
1511 // 还需要把flowDetail.value.productPrice 拼接priceUnitList.value.find(item => item.value == flowDetail.value.priceUnit)?.label 1511 // 还需要把flowDetail.value.productPrice 拼接priceUnitList.value.find(item => item.value == flowDetail.value.priceUnit)?.label
1512 return flowDetail.value.productPrice ? `${changeNum(parseInt(flowDetail.value.productPrice), 2)} ${priceUnitList.value.find(item => item.value == flowDetail.value.priceUnit)?.label}` : '--'; 1512 return flowDetail.value.productPrice ? `${changeNum(parseFloat(flowDetail.value.productPrice), 2)} ${priceUnitList.value.find(item => item.value == flowDetail.value.priceUnit)?.label}` : '--';
1513 }) 1513 })
1514 1514
1515 const toolBtns: any = computed(() => { 1515 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!