fix
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -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(() => { | ... | ... |
-
Please register or sign in to post a comment