| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html lang="zh-CN" class="index_page">
- <head>
- {template header}
- <title>我的文章 - {$mymps_global[SiteName]}</title>
- <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/member.css">
- <script>window['current'] = '我的商品';</script>
-
- </head>
- <body class="{$mymps_global[cfg_tpl_dir]}">
- <div class="wrapper">
- {template header_search}
-
- <div class="dl_nav">
- <span>
- <a href="index.php">首页</a>><a href="index.php?mod=member">会员中心</a>><a href="index.php?mod=member&action=goods">我的商品</a>
- </span>
- </div>
- <div class="my_docu">
- <ul>
- {loop $list $mymps}
- <li id="info{$mymps[id]}">
- <div class="img"><img src="{$mymps[pre_picture]}"></div>
- <h3><a href="index.php?mod=goods&id={$mymps[goodsid]}">{echo cutstr($mymps[goodsname],40)}</a></h3>
- <dl class="cfix">
- <dt style="color:#f30">价格:¥{$mymps[nowprice]}</dt>
- <dd><del>原价:¥{$mymps[oldprice]}</del></dd>
- </dl>
- </li>
- {/loop}
- </ul>
- </div>
-
- {if $list}
- <div class="pager" style="border-top:none; border-bottom:1px #ddd solid;">
- {$pageview}
- </div>
- {/if}
- </div>
- {template footer}
- </body>
- </html>
|