export_project.html 1.2 KB

12345678910111213141516171819202122232425262728
  1. <style>
  2. html {background:white;}
  3. body {color:#333;width:794px;margin:0 auto;box-sizing:border-box;font-size:14px;font-family:"仿宋GB2312";}
  4. .header {text-align:center;font-weight:bold;font-size:18px;}
  5. .activity-title {margin-top:20px;font-size:16px;font-weight:bold;}
  6. .form {padding-left:35px;}
  7. .form .form-title {margin-top:20px;}
  8. .form .form-title .num{margin-left:20px;color:red;}
  9. .form .form-content {margin-top:10px;}
  10. .form .form-content .form-span {margin-left:30px;}
  11. .form .form-content .percent {color:red;margin-left:10px;}
  12. </style>
  13. <div class="header">{$form.text_name}</div>
  14. {volist name="list" id="item"}
  15. <div class="activity-title">
  16. {$item.title}
  17. </div>
  18. <div class="form">
  19. {volist name="item.list" id="data"}
  20. <div class="form-title">{$data.title}<span class="num">{$data.answer_total}人</span></div>
  21. <div class="form-content">
  22. {volist name="data.answer" id="answer"}
  23. <span class="form-span">{$answer.title} <span class="percent">{:round($answer['num']/$data['answer_total'],4) * 100}%</span></span>
  24. {/volist}
  25. </div>
  26. {/volist}
  27. </div>
  28. {/volist}