📋 家庭财物清单 — Tenant Insurance 索赔必备
💡 为什么要做财物清单? Tenant Insurance 理赔时,保险公司需要你证明"你有什么、多少钱买的"。没有清单,只能凭记忆报,容易漏报或少赔。每年更新一次,拍照存证,出事了直接提交。
← 返回保险指南

📊 总估值

所有物品总值$0
建议保额
$30,000

📤 导出 / 保存

数据存在浏览器本地,清除缓存会丢失。建议导出保存。

📸 拍照存证技巧:
• 每个房间拍全景 + 细节(贵重物品单独拍)
• 拍下收据/发票(电子版存云盘)
• 用 📸 证据记录器 拍照加水印打包
← 返回保险指南
Home Inventory'; html += '

🏠 Home Inventory / 家庭财物清单

'; html += `

Exported: ${new Date().toLocaleDateString()}

`; let grandTotal = 0; for (const room of ROOMS) { const items = state.items[room] || []; if (items.length === 0) continue; let roomTotal = 0; html += `

${room}

`; for (const item of items) { const qty = parseInt(item.qty) || 1; const price = parseFloat(item.price) || 0; const total = qty * price; roomTotal += total; html += ``; } html += ``; html += '
ItemCategoryQtyPriceTotal
${esc(item.name)}${item.category}${qty}$${price.toFixed(2)}$${total.toFixed(2)}
Room Total:$${roomTotal.toFixed(2)}
'; grandTotal += roomTotal; } html += `
Grand Total: $${grandTotal.toFixed(2)}
`; html += '

Generated by Smart Sold Realty · ontariohomeguide.ca

'; html += ''; w.document.write(html); w.document.close(); w.print(); } function download(content, filename, mime) { const blob = new Blob([content], { type: mime }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = filename; link.click(); URL.revokeObjectURL(link.href); } // Init render();