<!-- {* 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='/Product/ProductDetails.aspx?ProductsId={$T.rows[$T.index].ProductsId}' target="_blank" style="cursor:pointer;" class="fl"> <img data-original="{$T.rows[$T.index].Image88url}" class="lazy fl"> </a> <div class="fl m-l"> <a href='/Product/ProductDetails.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 isPopupLogin" 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> <span class="red fs-14">{#if $T.rows[$T.index].Price1==""} 请登录后查看 {#else} {$T.rows[$T.index].Price1} {#/if}</span> </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 isPopupLogin" title="加入购物车" onclick="MyCart.Add({$T.row.ProductsId},false);"/> <a href='/Product/ProductDetails.aspx?ProductsId={$T.row.ProductsId}' target="_blank"> <img data-original="{$T.row.Image180url}" class="lazy"></a> </div> <div class="price" style="height: 30px;margin:10px 0 8px 0;"> <div class="fl"> <span class="fl gray fs-12" style="letter-spacing:-1px;"> {#if $T.row.Price1==""} 请登录后查看 {#else} {$T.row.Price1} {#/if} </span> </div> <div class="fr gray" >已售:{$T.row.Solded1}</div> </div> <div class="pro_title"> <a href='/Product/ProductDetails.aspx?ProductsId={$T.row.ProductsId}' target="_blank" > <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} --> <!-- {* Main template *} {#template MAIN} <ul> {#foreach $T.rows as row} <li> <div class="fl"> <a href='/Product/ProductDetails.aspx?ProductsId={$T.row.id}' target="_blank"><img src="{$T.row.img}" width="88" height="88" /></a> </div> <div class="fl" style="width:100px;"> <span> <a href='/product/item/{$T.rows[$T.index].SuppliersId}/_{$T.row.id}.html' target="_blank" style="display: block;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" >{$T.row.name}</a></span><br /> <span class="red">¥{$T.row.Price1}</span> </div> <div class="clean"></div> </li> {#/for} </ul> {#/template MAIN} -->