<!-- {* Main template *} {#template MAIN} <table> <thead> <tr> <th style="width: 400px;">用品信息</th> <th>单价(元)</th> <th>已售</th> <th>最低起购数</th> <th>最高限购数</th> <th>供货周期</th> </tr> </thead> <tbody > {#for index=0 to $T.rows.length-1} <tr> <td class="iteminfo p-d"> <div> <a href='https://www.hotelsourcing.cn/Product/FreshProductDetails.aspx?ProductsId={$T.rows[$T.index].ProductsId}' target="_blank" style="cursor:pointer;" class="fl"> <img data-original="http://images.hotelsourcing.cn{$T.rows[$T.index].Image88url}" class="lazy fl"> </a> <div class="fl m-l"> <a href='https://www.hotelsourcing.cn/Product/FreshProductDetails.aspx?ProductsId={$T.rows[$T.index].ProductsId}' target="_blank" style="cursor:pointer;"> <span style=" display: inline-block;width: 190px;line-height: 16px;">{$T.rows[$T.index].Title}</span> </a> <br /> <br /> <a href="javascript:void(0);"onclick="MyCart.Add({$T.rows[$T.index].ProductsId},false)" class="ghost" style="display: inline-block;padding: 0 1em;border: 1px solid #ccc;line-height: 25px;color: gray;">加入购物车</a> <br /> <br /> {$T.rows[$T.index].Certified1} </div> <div class="clean"></div> </div> </td> <td> {#if $T.rows[$T.index].MPSuppliers.IsSigned==true} <span class="red fs-14">{$T.rows[$T.index].Price1}</span> {#else} <span class="red fs-14">非公开价格</span> {#/if} </td> <td>{$T.rows[$T.index].Solded1}</td> <td>{$T.rows[$T.index].MOQ1}</td> <td>{$T.rows[$T.index].HighestMOQ1}</td> <td>{$T.rows[$T.index].DeliveryTime1}</td> </tr> {#/for} </tbody> </table> {#/template MAIN} --> <!-- {* Main template *} {#template MAIN} <div id="datu" class="item-datu"> <ul style="margin-bottom:-13px;"> {#foreach $T.rows as row} <li onmouseover='showCart(this)' onmouseout='hideCart(this)'> <div class="itempic"> <img src="/zcy/default/pc/images/cart.png" class="mycart" title="加入购物车" onclick="MyCart.Add({$T.row.ProductsId},false);"/> <a href='https://www.hotelsourcing.cn/Product/FreshProductDetails.aspx?ProductsId={$T.row.ProductsId}' target="_blank" title={$T.row.Title}> <img data-original="http://images.hotelsourcing.cn{$T.row.Image180url}" class="lazy"></a> </div> <div class="price" style="height: 30px;margin:10px 0 8px 0;"> <div class="fl"> {#if $T.row.MPSuppliers.IsSigned==true} <span class="fl red fs-12 moneyLogo">¥</span> <span class="fl red fs-20" style="letter-spacing:-1px;">{$T.row.Price1}</span> {#else} <span class="fl red fs-12" style="letter-spacing:-1px;">非公开价格</span> {#/if} </div> <div class="fr gray" >已售:{$T.row.Solded1}</div> </div> <div class="pro_title"> <a href='https://www.hotelsourcing.cn/Product/FreshProductDetails.aspx?ProductsId={$T.row.ProductsId}' target="_blank" title={$T.row.Title}> <span>{$T.row.Title}</span></a> </div> <div class="iteminfo gray">{$T.row.MPSuppliers.TrueName}</div> <div style="height:18px;overflow:hidden;padding:0 8px 12px;"><div class="fl gray">{$T.row.MPSuppliers.ProvinceNameStr}</div><div class="fr">{$T.row.Certified1}</div></div> </li> {#/for} </ul> </div> {#/template MAIN} -->