pic.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. {%include '../inc/header.html'%}
  5. <link href="{{static_url('mobile/css/imgs.css')}}" rel="stylesheet">
  6. </head>
  7. <body>
  8. {%set data['topName'] = data['info']['name'] %}
  9. {%set data['topUrl'] = '/device' %}
  10. {%include '../inc/top.html'%}
  11. <section class="scroll">
  12. <ul>
  13. {% for v in data['device'] %}
  14. <li><a href="{{data['url']['pic']}}&device={{v['id']}}"><i class="ico ico-cam"></i><p>{{v['name']}}</p></a></li>
  15. {% end %}
  16. </ul>
  17. </section>
  18. <section class="m-wrapper">
  19. <section class="li-1" id="dever-list">
  20. {% for v in data['pic'] %}
  21. <dl>
  22. <dt><img src="{{v['pic']}}" width="100%"></dt>
  23. <dd>{{v['cdates']}}</dd>
  24. </dl>
  25. {% end %}
  26. </section>
  27. <section class="loading-more" style="display:none;"><i></i>加载中...</section>
  28. </section>
  29. {%include 'inc/menu.html'%}
  30. {%include '../inc/script.html'%}
  31. {%set url = data['url']['pic'] + '&device=' + data['deviceInfo']['id'] %}
  32. {%include '../inc/page.html'%}
  33. </body>
  34. </html>