fix(对账组件): 统一清理组件中的默认时间值

This commit is contained in:
2026-01-14 16:59:17 +08:00
parent dff302aae8
commit f1c50921de
4 changed files with 5 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ function transformData(rows: RowType[]) {
orderMoney: '', orderMoney: '',
realMoney: '', realMoney: '',
districtMoney: '', districtMoney: '',
startTime: props.payment?.ctime || '', startTime: '',
endTime: '', endTime: '',
})); }));
} }

View File

@@ -39,7 +39,7 @@ function transformData(rows: RowType[]) {
orderMoney: String(row.point), orderMoney: String(row.point),
realMoney: '', realMoney: '',
districtMoney: '', districtMoney: '',
startTime: props.payment?.ctime || '', startTime: '',
endTime: '', endTime: '',
})); }));
} }

View File

@@ -41,8 +41,8 @@ function transformData(rows: RowType[]) {
orderMoney: '', orderMoney: '',
realMoney: '', realMoney: '',
districtMoney: '', districtMoney: '',
startTime: row.createDate, startTime: props.payment?.ctime || '',
endTime: String(row.studyDays), endTime: '',
})); }));
} }

View File

@@ -39,7 +39,7 @@ function transformData(rows: RowType[]) {
orderMoney: String(row.price), orderMoney: String(row.price),
realMoney: '', realMoney: '',
districtMoney: '', districtMoney: '',
startTime: props.payment?.ctime || '', startTime: '',
endTime: '', endTime: '',
})); }));
} }