<blockquote class="info"><p>旅游模块标签</p></blockquote>
~~~
{product cid='' tit='' des='' limit='' order='' value=''}循环的线路 {/product}
/*
6个参数
cid='"栏目id"'
des='线路描述字数长度限制' 默认:不限制
tit='线路标题字数长度限制' 默认:不限制
limit = '调用几条产品' 默认=不限制
order=排序规则 默认sort desc
value = '自定义变量' 默认travel
*/
~~~
<blockquote class="info"><p>案例</p></blockquote>
~~~
{travel cid='34' tit='15' des='4' limit='8' order='' value=''}
<dl>
<a href="{:url('index/index/travel_view',['id'=>$travel['id']])}">
<img src="{$travel['originalPic']}" alt="旅游线路图">
<h2>{$travel['title']}</h2>
<p>¥{$travel['sellPrice']} <small>起</small> <span>查看详情 > </span></p>
</dt>
</a>
</dl>
{/travel}
~~~