| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html lang="zh-CN" class="index_page">
- <head>
- {template header}
- <title>{$page_title}</title>
- <meta name="keywords" content="{$goods[goodsname]}" />
- <meta name="description" id="description" content="{$goods[goodsname]}" />
- <link type="text/css" rel="stylesheet" href="{$mayimobile[mobiledomain]}/template/css/global.css">
- <link type="text/css" rel="stylesheet" href="{$mayimobile[mobiledomain]}/template/css/style.css">
- <link type="text/css" rel="stylesheet" href="{$mayimobile[mobiledomain]}/template/css/goods.css">
- <script>window['current'] = '商品展示';</script>
- <base href="{$mymps_global[SiteUrl]}" />
- </head>
- <body class="{$mymps_global[cfg_tpl_dir]}">
- <div class="wrapper">
- {template header_search}
- <div class="clearfix"></div>
- <div class="b_main" id="b_main">
- <div class="pro_info">
- <div class="show_pic">
- <img src="{$mymps_global[SiteUrl]}{$goods[picture]}" style="width:100%" alt="{$goods[goodsname]}" />
- </div>
- <div class="sp_info">
- <h2>{$goods[goodsname]}</h2>
- <span class="price">¥<strong>{$goods[nowprice]}</strong><del>¥{$goods[oldprice]}</del></span>
- <span class="fav_0"></span>
- <span class="k_buy"><a href="{$goods[tname_uri]}">进入店铺</a></span>
- </div>
- <div class="e_condit">
- <dl>
- <dt>供货机构</dt>
- <dd><a href="{$goods[tname_uri]}">{echo cutstr($goods[tname],16)}</a></dd>
- </dl>
- <dl>
- <dt>人气</dt>
- <dd>{$goods[hit]}</dd>
- </dl>
- </div>
- </div>
- <!--详情-->
- <div class="sp_detail">
- <div class="title"><span>商品详情</span></div>
- <div class="con" id="resizeIMG" style="padding:10px;">
- {$goods[content]}
- </div>
- </div>
- </div>
- {template footer}
- </body>
- <script>(function($){IDC.resizeIMG(document.getElementById('resizeIMG'),300,480)})(jQuery);</script>
- </html>
|