fix-trial

This commit is contained in:
hangyu.tao 2026-01-14 11:02:17 +08:00
parent 8d09386272
commit 9ad80c5159

View File

@ -218,6 +218,7 @@ function renderTrialPeriodsTable() {
pageData.forEach(period => { pageData.forEach(period => {
const row = document.createElement('tr'); const row = document.createElement('tr');
// 显示客户名称如果找不到则显示ID
const customerName = customersMap[period.customerId] || period.customerId; const customerName = customersMap[period.customerId] || period.customerId;
const startTime = formatDateTime(period.startTime); const startTime = formatDateTime(period.startTime);
const endTime = formatDateTime(period.endTime); const endTime = formatDateTime(period.endTime);