records.forEach(({ order_id, queue_id, repeat_count, first_auditor, repeat_auditor1, repeat_auditor2, is_equal, createdAt }) => {
const isEqual = is_equal === 1 ? '是' : '否';
const _createdAt = createdAt instanceof Date ? createdAt : new Date(createdAt);
list[0].data.push([order_id, queue_id, repeat_count, first_auditor, repeat_auditor1, repeat_auditor2, isEqual, _createdAt]);
});
const _xlsx = xlsx.build(list);
records.forEach(({ order_id, queue_id, repeat_count, first_auditor, repeat_auditor1, repeat_auditor2, is_equal, createdAt }) => {
const isEqual = is_equal === 1 ? '是' : '否';
const _createdAt = createdAt instanceof Date ? createdAt : new Date(createdAt);
list[0].data.push([order_id, queue_id, repeat_count, first_auditor, repeat_auditor1, repeat_auditor2, isEqual, _createdAt]);
});
const _xlsx = xlsx.build(list);