12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html>
- <head>
- {%include '../inc/header.html'%}
- <link href="{{static_url('mobile/css/index.css')}}" rel="stylesheet">
- </head>
- <body>
- <section class="m-wrapper">
- {%include 'menu.html'%}
- <section class="banner">
- <img src="{{data['info']['pic']}}" width="100%">
- </section>
- <section class="li-1">
- <dl>
- <dt><i class="ico ico1"></i></dt>
- <dd class="tit">{{data['info']['name']}}</dd>
- <dd>批次:{{data['info']['number']}}号</dd>
- </dl>
- <dl>
- <dt><i class="ico ico2"></i></dt>
- <dd class="tit">{{data['farm']['name']}}</dd>
- <dd>{{data['farm']['address']}}<br>{{data['farm']['tel']}}</dd>
- </dl>
- <dl>
- <dt><i class="ico ico3"></i></dt>
- <dd class="tit green">{{data['zhou']}}天</dd>
- <dd>{{data['info']['zzdates']}}种植 ~ {{data['info']['csdates']}}采收</dd>
- </dl>
- </section>
- </section>
- <section class="m-wrapper">
- {% for v in data['list'] %}
- <section class="img-wrap">
- <img src="{{v['pic']}}" width="100%" />
- <p>{{v['cdates']}}</p>
- </section>
- {% end %}
- <section class="loading-more"><i></i>加载中...</section>
- </section>
- {%include '../inc/script.html'%}
- </body>
- </html>
|