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: '',
realMoney: '',
districtMoney: '',
startTime: props.payment?.ctime || '',
startTime: '',
endTime: '',
}));
}

View File

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

View File

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

View File

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