index.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. {%include '../inc/header.html'%}
  5. <link href="{{static_url('mobile/css/index.css')}}" rel="stylesheet">
  6. </head>
  7. <body>
  8. <section class="m-wrapper">
  9. {%include 'menu.html'%}
  10. <section class="banner">
  11. <img src="{{data['info']['pic']}}" width="100%">
  12. </section>
  13. <section class="li-1">
  14. <dl>
  15. <dt><i class="ico ico1"></i></dt>
  16. <dd class="tit">{{data['info']['name']}}</dd>
  17. <dd>批次:{{data['info']['number']}}号</dd>
  18. </dl>
  19. <dl>
  20. <dt><i class="ico ico2"></i></dt>
  21. <dd class="tit">{{data['farm']['name']}}</dd>
  22. <dd>{{data['farm']['address']}}<br>{{data['farm']['tel']}}</dd>
  23. </dl>
  24. <dl>
  25. <dt><i class="ico ico3"></i></dt>
  26. <dd class="tit green">{{data['zhou']}}天</dd>
  27. <dd>{{data['info']['zzdates']}}种植 ~ {{data['info']['csdates']}}采收</dd>
  28. </dl>
  29. </section>
  30. </section>
  31. <section class="m-wrapper">
  32. {% for v in data['list'] %}
  33. <section class="img-wrap">
  34. <img src="{{v['pic']}}" width="100%" />
  35. <p>{{v['cdates']}}</p>
  36. </section>
  37. {% end %}
  38. <section class="loading-more"><i></i>加载中...</section>
  39. </section>
  40. {%include '../inc/script.html'%}
  41. </body>
  42. </html>