1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html>
- <head>
- {%include '../inc/header.html'%}
- <link href="{{static_url('mobile/css/imgs.css')}}" rel="stylesheet">
- </head>
- <body>
- {%set data['topName'] = data['info']['name'] %}
- {%set data['topUrl'] = '/device' %}
- {%include '../inc/top.html'%}
- <section class="scroll">
- <ul>
- {% for v in data['device'] %}
- <li><a href="{{data['url']['pic']}}&device={{v['id']}}"><i class="ico ico-cam"></i><p>{{v['name']}}</p></a></li>
- {% end %}
- </ul>
- </section>
- <section class="m-wrapper">
- <section class="li-1" id="dever-list">
- {% for v in data['pic'] %}
- <dl>
- <dt><img src="{{v['pic']}}" width="100%"></dt>
- <dd>{{v['cdates']}}</dd>
- </dl>
- {% end %}
- </section>
- <section class="loading-more" style="display:none;"><i></i>加载中...</section>
- </section>
- {%include 'inc/menu.html'%}
- {%include '../inc/script.html'%}
- {%set url = data['url']['pic'] + '&device=' + data['deviceInfo']['id'] %}
- {%include '../inc/page.html'%}
- </body>
- </html>
|