|
|
@@ -144,7 +144,7 @@ export default {
|
|
|
this.titleInfo = {
|
|
|
availableAmount: rData.accountBalance.availableAmount,
|
|
|
totalWaitConfirm: rData.totalWaitConfirm
|
|
|
- ? rData.totalWaitConfirm / 100
|
|
|
+ ? (rData.totalWaitConfirm / 100).toFixed(2)
|
|
|
: "--",
|
|
|
amount: rData.accountBalance.amount,
|
|
|
totalWaitPay: rData.totalWaitPay ? rData.totalWaitPay / 100 : "--",
|
|
|
@@ -162,7 +162,7 @@ export default {
|
|
|
if (i.entity_type === "3") {
|
|
|
projectName = rData.periodList[i.entity_id].pro_name;
|
|
|
prePay = (
|
|
|
- (rData.periodList[i.entity_id].origin_price || 0) / 100
|
|
|
+ (rData.projectList[i.entity_id]?rData.projectList[i.entity_id].origin_price || 0:0) / 100
|
|
|
).toFixed(2);
|
|
|
servicePay = (
|
|
|
(rData.periodList[i.entity_id].person_platform_fee || 0) / 100
|
|
|
@@ -174,7 +174,7 @@ export default {
|
|
|
projectName = rData.projectList[i.entity_id].pro_name;
|
|
|
|
|
|
prePay = (
|
|
|
- (rData.projectList[i.entity_id].origin_price || 0) / 100
|
|
|
+ (rData.projectList[i.entity_id]?rData.projectList[i.entity_id].origin_price || 0:0) / 100
|
|
|
).toFixed(2);
|
|
|
servicePay = (
|
|
|
(rData.projectList[i.entity_id].person_platform_fee || 0) / 100
|