12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>index</title>
- </head>
- <body>
- <h1>客戶資料</h1>
- <div>編號:{{context.time_stamp}}</div>
- <div>姓名:{{context.name}}</div>
- <div>電話:{{context.phone}}</div>
- <div>郵件:{{context.mail}}</div>
- <h1>裝修資料</h1>
- <table>
- <tr>
- <th>地區</th>
- <th>{{context.loc}}</th>
- </tr>
- <tr>
- <th>房屋類型</th>
- <th>{{context.h_class}}</th>
- </tr>
- <tr>
- <th>坪數</th>
- <th>{{context.size}}</th>
- </tr>
- </table>
- </body>
- </html>
|