|
|
@@ -88,7 +88,7 @@
|
|
|
label-class-name="w-135px"
|
|
|
class-name="w-380px"
|
|
|
label="收费总额"
|
|
|
- >{{ isEmpty(item.shouldAmount) ? '-' : item.shouldAmount }}</el-descriptions-item
|
|
|
+ >{{ isEmpty(item.serviceAmount) ? '-' : item.serviceAmount }}</el-descriptions-item
|
|
|
>
|
|
|
</el-descriptions>
|
|
|
</template>
|
|
|
@@ -211,8 +211,8 @@ const init = () => {
|
|
|
formData.value.contactPhone = firstItem.recipientPhone
|
|
|
formData.value.email = firstItem.recipientEmail
|
|
|
const total = res.list
|
|
|
- .filter((item) => !isEmpty(item.shouldAmount))
|
|
|
- .reduce((pre, cur) => new Decimal(pre).add(new Decimal(cur.shouldAmount)), new Decimal(0)).toString()
|
|
|
+ .filter((item) => !isEmpty(item.serviceAmount))
|
|
|
+ .reduce((pre, cur) => new Decimal(pre).add(new Decimal(cur.serviceAmount)), new Decimal(0)).toString()
|
|
|
console.log('total:', total)
|
|
|
formData.value.totalAmount = total
|
|
|
formData.value.actualAmount = total
|