member_goods.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="zh-CN" class="index_page">
  3. <head>
  4. {template header}
  5. <title>我的文章 - {$mymps_global[SiteName]}</title>
  6. <link type="text/css" rel="stylesheet" href="{$mayimobile[mobiledomain]}/template/css/global.css">
  7. <link type="text/css" rel="stylesheet" href="{$mayimobile[mobiledomain]}/template/css/style.css">
  8. <link type="text/css" rel="stylesheet" href="{$mayimobile[mobiledomain]}/template/css/member.css">
  9. <script>window['current'] = '我的商品';</script>
  10. </head>
  11. <body class="{$mymps_global[cfg_tpl_dir]}">
  12. <div class="wrapper">
  13. {template header_search}
  14. <div class="dl_nav">
  15. <span>
  16. <a href="index.php">首页</a>&gt;<a href="index.php?mod=member">会员中心</a>&gt;<a href="index.php?mod=member&action=goods">我的商品</a>
  17. </span>
  18. </div>
  19. <div class="my_docu">
  20. <ul>
  21. {loop $list $mymps}
  22. <li id="info{$mymps[id]}">
  23. <div class="img"><img src="{$mymps[pre_picture]}"></div>
  24. <h3><a href="index.php?mod=goods&id={$mymps[goodsid]}">{echo cutstr($mymps[goodsname],40)}</a></h3>
  25. <dl class="cfix">
  26. <dt style="color:#f30">价格:&yen;{$mymps[nowprice]}</dt>
  27. <dd><del>原价:&yen;{$mymps[oldprice]}</del></dd>
  28. </dl>
  29. </li>
  30. {/loop}
  31. </ul>
  32. </div>
  33. {if $list}
  34. <div class="pager" style="border-top:none; border-bottom:1px #ddd solid;">
  35. {$pageview}
  36. </div>
  37. {/if}
  38. </div>
  39. {template footer}
  40. </body>
  41. </html>