认识 ecshop

导读:推荐(免费):ecshop教程 我是一个EC新手,EC就算做再多的模板,肯定也满足不了我们的需要,更何况各行有各行的门道,EC统一做出来的模板也不一定合适于我们

推荐(免费):ecshop教程

我是一个EC新手,EC就算做再多的模板,肯定也满足不了我们的需要,更何况各行有各行的门道,EC统一做出来的模板也不一定合适于我们这个行业用,因此,只有我们真正掌握了自己做模板,修改模板的功夫,才能真正的打造适合自己的电子商务平台,真正打造符合自己行业内的客户习惯的电子商务平台。

  首先欢迎各位浏览本教程,恭喜大家使用 ECshop,!EC有多好,ECshop是PHP构建的,PHP的应用我也不想多说了(亚马逊:http://www.020jz.org/,雅虎:yahoo.com,百度:baidu.com淘宝:http://www.020jz.org/新浪:sina.com,腾讯:qq.com),(ps: ECshop成功了!在这一刻,他是伟大电子商务的传承,他不是一个人在战斗,他不是一个人 -_-!!! ) 我也不多讲了大家都知道,不过有时候热爱潜水的我真的时是实在忍不住要跳出来说两句.

  本教程适用于了解 ECshop 和 ECshop模板DIY 以及它们的日常使用,在查看前阁下需要至少会使用一种编辑器(exp:Dreamweaver, editplus, emacs, vi, ee …意思就是可视化的HTML编辑器或者直接文本编辑器,我在讲的时候用Dreamwaver来讲,这样比较适合初学者和设计师)。 这个教程目前由我一个人维护,但我相信,过不了多久就会有多人 持续地 维护。其中的内容需要不断地更新。如果您有兴趣参加,嘿嘿,PM我。我们一起为大家服务啊.

  通过对本教程的学习,只要您边看边跟着做,一定能够学会自己做模板的。:)

  下列章节的适用于ECshop程序。 同时这里许多内容和一些 Smarty相关。 假如您已经熟悉这些内容可跳过不阅读。假如您是ECshop新手并且想diy一下自己的店铺, 那您应该认真详细地从头到尾读一遍这些章节。( ps: 大家不要紧张,我会尽量用人类的语言和大家交流,实在万不得已才会用机器语言展示给大家 ) 希望大家能够通过本教程,想要什么模板都能自己做出来。哈哈!一起加油吧!

第一章节:

读取这些内容,您将了解:

     1、每个前台页面所对应的模板页面,模板文件的目录结构。

   2、 一些最基本的ECshop模板修改方法。

   3、 模板的路径以及相关包含文件的方法(深入了解Dreamweaver模板制作)。

   4、一些常用模板例子讲解.

  模板存放路径:ecshop/themes/xxxxx   其中的 xxxxx 就是某一套模板,如系统一般会自带的模板文件名叫做 default, (即:ecshop/themes/default )里面放的就是安装好时的默认模板,以下所有的说明都是针对默认模板来讲解.

images/        (存放模板中用到的图片)

library/          ( 存放一些小模板文件及重复被用到的模板文件 )

style.css        (模板样式文件)

index.dwt     (首页的模板 index.php)

goods.dwt   ( 商品显示页的模板 goods.php)

  我们随便找一张gif图片,起名为logo.gif放到images目录中,然后我们刷新首页。看到没?首页logo被修改了。如果你觉得大小不合适,那么我们打开library目录中的 page_header.lib 查看源代码,然后搜索 images/logo.gif 然后看它后面 width=”130″ height=”56″  把130和56改为相应的值就可以了,到前台刷新看看。到浏览器前台刷新,看看页面有什么变化。虾米?没有发现吗?看看浏览器头部啊,呵呵,是不是网站的标题被改变了?

  哈哈,对,{$page_title}就是网站标题的标签 ( 注: 标签是从{开始到}结束哦,{和}属于标签的一部分 ). 整个ECshop的模板就是一个一个这样的标签组成了,控制网站内容和数据的动态显示。

  比如

({$keywords} )控制网站的关键字标签,

  {$description} :网站描述标签 ,( 这就是模板中的标签,每个标签都会对应程序里面的一个值,网站运行时模板引擎会来读取模板页面,然后把对应的标签用对应的值进行替换,就显示出我们看到的网站页面了,明白了吧。这一段内容对于新手来说,可能一下子不能完全消化,还有什么问题就留言,我会更新到这里来) 大家不要着急,欲速则不达,呵呵,下面我们真正开始做ECshop的模板了,( 不懂HTML的观众准备好Dreamweaver哦 )

操作前提,将您当前使用的模板调整为default模板,然后清空缓存。

接下来我们进入default目录,可以看到以下文件目录:

*.dwt    (表示其它.dwt文件)

虾米?难道你不相信这些就是模板吗?好,那我证明给你看看.

我们把把images里面的logo.gif文件的名字,改为logo2.gif,然后

好接下来我们用dreamweaver打开index.dwt文件,在源代码中搜索 {$page_title} ,找到后,将{$page_title} 修改为 超级无敌的大卖场. 然后到

很简单8,哈哈,大家真是冰雪聪明,孔明再世啊,这么快就学会了,如果你上一步你操作很超级非常very的简单的话,接下来的学习也时一样的哦.接下来要怎么改呢?广告之后我们继续。

…..黄金广告位…欢迎购买……需要的话PM我…..(PS:人不能无耻到这个地步)….哈哈… 

1.   我们到/themes/default目录中,把index.dwt改名为index_bak.dwt, 然后用Dreamweaver新建一个HTML文件,然后保存到/themes/default目录中,命名为 index.dwt, 好,我们刷新前台看看,哈哈,什么也没有哦. 好,在我们新建的index.dwt中找到

,我们把和中间的内容替换为:{$page_title},在和之间也放入一个{$page_title}, 刷新前台看看.嘿嘿,看到什么了?网站标题被打印出来了吧? <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">如有操作时候有弹出对话框:</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">点击确定就可以了,:)</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">2.   接下来我们选择可视化界面编辑:然后在{$page_title}后面按Enter键换行,然后输入: 商店公告:{$shop_notice} 到浏览器刷新首页刷新看看,呵呵。商店公告被调出来了,可以去网站后台 </p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">系统设置->商店设置->网店信息->商店公告  修改内容,然后到浏览器再刷新网站首页看看,呵呵,商店公告是被动态掉出来的哦.</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> </p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">3.   好继续在{$shop_notice}后面按Enter键换行,然后输入<span style="text-indent: 2em;"> </span></p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. 网站快讯:     2. {foreach from=$new_articles item=article}       3. {$article.short_title}       4. {/foreach}</pre> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">注:</p> <table style="margin:0px auto; padding:0px; overflow:hidden" border="0"> <tbody> <tr> <td style="margin:0px; padding:0px; overflow:hidden">换行的地方按Enter键哦, 好刷新前台看看 ,呵呵,网站快讯被调出来了哦。<p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好我们再到网站后台->文章管理->网站列表->添加文章,选择 网站快讯这个分类,随便添加一篇内容,完成后前台刷新看看。两篇文章都被动态掉出来了哦。</p> </td> </tr> </tbody> </table> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">注释:</p> <table style="margin:0px auto; padding:0px; overflow:hidden" border="0"> <tbody> <tr> <td style="margin:0px; padding:0px; overflow:hidden"> <p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="margin:0px; padding:0px; overflow:hidden; font-size:16px">{foreach from=$new_articles item=article} : 循环的开始,</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="margin:0px; padding:0px; overflow:hidden; font-size:16px">{/foreach}  : 循环的结束</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="margin:0px; padding:0px; overflow:hidden; font-size:16px">$new_articles: 为要循环的东西,这里为网站快讯</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="margin:0px; padding:0px; overflow:hidden; font-size:16px">{$article.short_title} : 快讯标题的标签</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="margin:0px; padding:0px; overflow:hidden; font-size:16px">模式为: {foreach from=$post item=name} content {/foreach}</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="margin:0px; padding:0px; overflow:hidden; font-size:16px">{foreach from=$post item=name}和{/foreach}标签中间可以任意添加要循环的内容content(可以为任意的东西),循环的次数受到 $post的限制(这里要填什么我都会告诉大家的.)name为当前这个循环的对象。方便调用数据。</span></p> </td> </tr> </tbody> </table> <p><span style="text-indent: 2em;"> </span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">以后这个循环我们会经常的用到哦. 还是不懂也没有关系,每次遇到我都会讲哪里要怎么设置的,多用就会了。</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">我们也可以这么写哦 , 注意: 在代码编辑的视图里面编辑</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. </pre> <table>        2. {foreach from=$new_articles item=article}       3.  <tbody> <tr> <td>       4. {$article.short_title}       5. </td>       6. {/foreach}       7.  </tr> </tbody> </table> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">哈哈,保存,刷新首页看看,表格被一行一行的循环出来了哦</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> </p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="font-family:黑体;font-size:18px;color:#ff660;margin:0px; padding:0px; overflow:hidden;">第二章</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">  一人得道,鸡犬升天啊,谢谢ECshop将我提升为教程区版主 ,实在时荣幸啊,谢谢大家的支持, 谢谢我的笔记本电脑小Y,谢谢我的电脑桌,谢谢我的椅子,谢谢大家! 呵呵!  ~Orz.   </p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板教程继续啦!</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不知道大家是学会用循环了呢,还是我的言语实在有问题,大家实在无法完成阅读哦,居然大家都没有问题,暂时心里安慰,把他当做好事情,大家都会调用了,呵呵,那我们继续循环调用商品了!</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好,继续在我们昨天的基础上,我们在网站快讯的循环后面,按 Enter键, 输入:商品列表,接着建立一个2行3列的表格,宽度为70%, 表格边框为1(为了让大家看清楚 ),起HTML代码如下</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. <p>商品列表</p>       2. </pre> <table>        3.    <tbody> <tr>        4.      <td>1</td>       5.      <td>2</td>       6.      <td>3</td>       7.    </tr>       8.    <tr>        9.      <td>4</td>       10.      <td>5</td>       11.      <td>6</td>       12.    </tr>       13.  </tbody> </table> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">注: ( 1,2,3,4,5,6这些个是序号,方便跟大家讲解呢 )</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">在这里,我们暂时先把下面这一行去掉(为了大家操作简单),变成</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. <p>商品列表</p>       2. </pre> <table>        3.    <tbody> <tr>        4.      <td>1</td>       5.      <td>2</td>       6.      <td>3</td>       7.    </tr>       8.  </tbody> </table> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">我们要循环的是列,也就是</p> ,因此我们的循环标签应该在  和的外面, 而2,和3应该是循环出来的东西,也就时我模板里面只用保留 1 这个td就可以了,2 和3都要去掉, <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">于是就变成了下面的样子</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. <p>商品列表</p>       2. </pre> <table>        3.    <tbody> <tr>        4.      <td>1</td>       5.    </tr>       6.  </tbody> </table> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好,现在我们开始加循环标签,我们要调用的是精品推荐商品, 代码如下:</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. <p>商品列表</p>       2. </pre> <table>        3.    <tbody> <tr>        4. {foreach from=$best_goods item=goods}       5.      <td>{$goods.short_style_name}</td>       6. {/foreach}       7.    </tr>       8.  </tbody> </table> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">注意了:foreach 表示下面的内容属于要进行循环,from=$best_goods 表示循环的内容来自$best_goods,($best_goods是精品商品推荐的标签 ) , item=goods 表示当前循环这一次的对象叫goods,你也可以改为其它的东东,当然{$goods.short_style_name}这个地方的goods也要相应的改了哦,{$goods.short_style_name} 表示goods 这个对象的商品名称. 好了,我们保存,前台刷新看一下啊。呵呵,精品商品被循环出来了吧?</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">接着,为了大家应用方便,我们把goods改为jingpinshangpin,代码如下:</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. <p>商品列表</p>       2. </pre> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好前台刷新看看哦,呵呵,夷?如果你有很多的精品商品你会发现商品变了,因为精品商品是随机调取出来的.</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好我们继续完善他,给它加上链接对应商品的链接,也就是添加属性, 代码如下:</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. <p>商品列表</p>       2. </pre> <table>        3.    <tbody> <tr>        4. {foreach from=$best_goods item=jingpinshangpin}       5.      <td>{$jingpinshangpin.short_style_name}</td>       6. {/foreach}       7.    </tr> </tbody> </table> <table>        3.    <tbody> <tr>        4. {foreach from=$best_goods item=jingpinshangpin}       5.      <td>{$jingpinshangpin.short_style_name}</td>       6. {/foreach}       7.    </tr>       8.  </tbody> </table> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">刷新浏览器,点击链接看看链接到什么地方去了哦。呵呵! 链接到了每个产品自己的页面了呢。 说明:标签 {$jingpinshangpin.url} 就是精品商品的商品链接的标签了,但是要记得哦,$jingpinshangpin 是你起的名字哦,item=$jingpinshangpin的这个 $jingpinshangpin改变了的话,这里也要跟着改变。</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">接下来我们添加上商品的图片哦 ,也就是增加一个属性 ,代码如下:</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. <p>商品列表</p>       2. </pre> <table>        3.    <tbody> <tr>        4. {foreach from=$best_goods item=jingpinshangpin}       5.      <td><p>{$jingpinshangpin.short_style_name}</td>       6. {/foreach}       7.    </tr>       8.  </tbody> </table> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">到前台刷新浏览器看看看,呵呵,商品缩略图也被调出来了。</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">说明:标签 {$jingpinshangpin.thumb} 就是精品商品的缩略图的标签了,但是要记得哦,$jingpinshangpin 是你起的名字哦,item=$jingpinshangpin的这个 $jingpinshangpin改变了的话,这里也要跟着改变。</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">如果你已经熟练理解和掌握了以上的步骤,那么下面就越来越清晰和容易了。</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">接下来我们调取新品上市(标签为: $new_goods )和热卖商品( 标签为:$hot_goods) ,接着在刚才的代码后面加上去就是了。我就不多讲了哦,代码如下</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. <p>新品上市</p>       2. </pre> <table>        3.  <tbody> <tr>        4. {foreach from=$new_goods item=xinpinshangshi}       5.  <td><p>       6. {$xinpinshangshi.short_style_name}</td>       7. {/foreach}       8.  </tr>       9.  </tbody> </table>       10.       11.  <p>热卖商品</p>       12.  <table>        13.  <tbody> <tr>        14. {foreach from=$hot_goods item=remaishangpin}       15.  <td><img><p>       16. {$remaishangpin.short_style_name}</td>       17. {/foreach}       18.  </tr>       19.  </tbody> </table> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">接着我们要一个Menu菜单,也就是做一个产品的分类列表出来。相信你现在至少知道分类的标签是什么,就知道要怎么做了吧,呵呵.</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">分类的标签是:$categories</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">代码如下:</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. <p>分类列表</p>       2. {foreach from=$categories item=fenlei}       3.    <a>{$fenlei.name}</a>       4. {/foreach}</pre> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">到前台刷新看看哦,呵呵,分类列表被调取出来了,我们试着在后台多添加几个一级分类,然后到首页刷新看看。</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">呵呵,我先去吃饭啦,吃完饭继续写如何把子分类调用出来,大家有问题多问哦,</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">吃饭回来了….(PS:这是怎么地啊,呵呵!)</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">子分类的标签是对应在父分类标签来调用的.代码如下:</p> <pre>1. <p>分类列表</p>       2. {foreach from=$categories item=fenlei}       3.    <a> {$fenlei.name}</a>       4.      {foreach from=$fenlei.children item=child}       5.      <br>- – <a>{$child.name|escape:html}</a>       6.      {/foreach}       7. {/foreach}</pre> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">保存以后前台刷新看看呢。呵呵,怎么样?子分类也被调用出来了吧,当然可以根据自己的需要,加上不同的表格或者图片的修饰哦,子分类是放在了父分类标签的基础上来调用的呢。</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不过如果你的分类已经固定了很少改动,我建议还是做成死的,这样可以做的更漂亮一些,比如每个分类直接是用图片来代替。呵呵,我一般就是这么处理的,我除了商品和新闻是动态调用出来的以外,其它的都是做成固定的死的,这样就能够设计的很漂亮,因为有时候受到代码的限制,做出来不是很好看。(…说的好模糊,您能理解吗?不能的话就告诉我 ).</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">本来教程已经写了好多了,但是很多地方写的有点让新手不是那么容易接受,所以就一直在想办法,如何讲解的更简单一些,能让每个人都学会做模板。思考中…..</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">由于个人原因,今天教程停播一天,明天继续,实在不好意思各位. ~Orz.</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">啊,今天的章节就算是结束啦,明天预告:</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">1.如何调用某个分类里面的商品 2.如何制作商品展示页面的模板 3.完善前面讲的章节,并对大家提出的问题做出解答</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">今天我们来学习如何掉用某一个分类里面的产品。 首先把 default文件夹中的category.dwt 的名字改为category_bak.dwt,然后新建一个category.dwt文件. 然后插入下面的代码:</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. {foreach from=$goods_list item=goods}       2. <img alt="认识 ecshop" ><br>       3. {$goods.goods_name}       4. {/foreach}</pre> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">复制代码</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">注:$goods_list表示商品标签</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">接着我们访问这个页面:(Ecshop的访问网址/category.php?id=1)例如:http://localhost/ecshop/category.php?id=1 这样我们就访问到了分类id为1的商品了,我们也可以让id=2就访问到id = 2商品了,那如何看某个分类的id呢? 我们看后台: 商品管理-》商品分类-》就可以看到商品分类的列表,然后把鼠标指上去选择新窗口打开,就能在地址来里面看到goods.php?act=list&cat_id=1这样子的信息,cat_id所等于的值就是这个分类的id了,然后就可以拿来调取了,呵呵。</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好每次每次都把商品的列表调取出来了,那么如何调取某一个商品的页面呢? 首先把 default文件夹中的goods.dwt 的名字改为goods_bak.dwt,然后新建一个goods.dwt文件. 然后插入下面的代码:</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. 商品图片: <img alt="认识 ecshop" ><br><br>       2. 商品名称:{$goods.goods_style_name}<br><br>       3. 商品货号:{$goods.goods_sn}<br><br>       4. 商品品牌: {$goods.goods_brand}<br><br>       5. 商品数量:{$goods.goods_number} 单位:{$goods.measure_unit}<br><br>       6. 添加时间:{$goods.add_time}<br><br>       7. 市场价格:{$goods.market_price}<br><br>       8. 本店价格:{$goods.shop_price_formated}<br><br>       9. 注册用户价格:{$rank_price.price}<br><br>       10. 注册用户价格:{$rank_price.price}<br><br>       11. 注册用户价格:{$rank_price.price}<br><br></pre> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">复制代码</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">接着我们访问这个页面:(Ecshop的访问网址/goods.php?id=1)例如:http://localhost/ecshop/goods.php?id=1 这样我们就访问到了商品id为1的商品了,我们也可以让id=2就访问到id = 2商品了,那如何看某个商品的id呢?</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">我们看后台:商品管理-》商品列表-》就可以看到商品品的列表,最前面那一栏就是商品的id了,,然后就可以拿来调取了,呵呵。</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">还有人在问品牌的,某一个品牌的商品怎么调用,呵呵,下次有时间再讲 更新啦!!</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">今天我们学习一下如何在首页调取某个分类的商品: 注意了,这里的修改有一些麻烦了哦:</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">首先你需要下载一套新的模板,比如blueksy 上传到模板目录 /themes/   也就是 /themes/bluesky,</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">然后进入网站后台->模板管理->模板选择,选择bluesky, 选择OK, 然后到网站后台 -> 模板管理 -> 设置模板 -> 分类下的商品 ( 点击分类下的商品前面的+号,然后选择“主区域中间“,序号默认, 商品分类随便选择一个就可以了”, </p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">然后填写显示的条数,填写好后点击确定提交,( 注意: 有的朋友可能会遇到提交不了,是因为权限问题,需要把bluesky的模板权限改,然后再重新提交一次)。</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">这里我增加了两个,的数据是:主区域空间 0 手机  6                                           </p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">主区域空间  0 手机 6 我们在这里增加了多少条记录,对应首页就可以调取多少个分类。</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好接下来我们恢复模板为原来我们改过的default模板</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">在我们以前做的基础上增加如下代码(也就是在原来代码的下面加上):</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. <p>第一个分类的</p><p>       2. <?php $this->assign(‘cat_goods’,$this->_var['cat_goods_1']); ?><?php $this->assign(‘goods_cat’,$this->_var['goods_cat_1']); ?><?php echo $this->fetch(‘library/cat_goods.lbi’); ?>       3. </p><p>第二个分类的</p><p>       4. <?php $this->assign(‘cat_goods’,$this->_var['cat_goods_3']); ?><?php $this->assign(‘goods_cat’,$this->_var['goods_cat_3']); ?><?php echo $this->fetch(‘library/cat_goods.lbi’); ?></p></pre> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">复制代码</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">这里要注意了, 红色的 1 代表你要显示分类的分类的ID, 将它改为你需要的 刚才添加的ID就可以了 红色的 3 代表你要显示分类的分类的ID, 将它改为你需要的 刚才添加的ID就可以了</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好了,保存,前台刷新看看啊,呵呵.是不是我们要的分类就出来了,</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">看样子改起来很简单哦,不过每次都是这样要操作两个模板才能改还是有些麻烦,呵呵,等到高手进阶的时候再来讲怎么做。</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">仔细一看还是有点不好的地方哦,就是样子不好看啊,对不对?是默认模板的样子,没有关系啦,我们打开 librasy目录中的cat_goods.lbi文件修改就可以了。修改要注意的地方上门讲过了,不过这里还是要再说明一些小问题</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">cat_goods.lbi的代码如下:</p> <p style="margin:0px; padding:0px; overflow:hidden"><p></p> <pre>1. <meta>       2. <p><img alt="认识 ecshop" ><a>{$goods_cat.name|escape:html}</a></p>       3. <p>       4.          5.   </p></pre> <table>        6.      <tbody> <tr>        7.        <td><img></td>       8.      </tr>       9.      <tr>        10.        <td> {$goods.short_name|escape:html}<p>       11.                12.         {$lang.promote_price}<span>{$goods.promote_price}</span>       13.                14.         {$lang.shop_price}<span>{$goods.shop_price}</span>       15.                16.       </td>       17.      </tr>       18.    </tbody> </table>       19.          20.    <p>       21.  <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">复制代码</p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">这里哦于一些奇怪的地方就是在标签两边多了  符号,这个是没有关系的.删除掉也没有关系的啦</p> <table style="margin:0px; padding:0px; overflow:hidden"> <tbody> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">名称</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">类型</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">备注(作用或意义)</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">文件<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">目录</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">)</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">名可否更改</span></p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">images</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">目录</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">存放模板图片目录 </p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">library</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">目录</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">存放模板库文件目录</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">screenshot.png </p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">图片</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">用于<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">“</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">后台管理 </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">-> </span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">模板管理 </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">-> </span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">模板选择</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">”</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">显示模板缩略图。</span></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">style.css</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">css<span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">样式表</span></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> </p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td colspan="4" style="margin:0px; padding:0px; overflow:hidden" width="563"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">备注:模板文件共<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">22</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">个</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">格式:</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">.dwt)</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">。 </span> 提醒: 1, <span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">更改模板文件里面库文件的内容是无效的,页面刷新时,程序自动重新载入库文件内容到模板文件里</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">以库文件内容为准</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">)</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">。</span> 2, <span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">模板内所有</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">id</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">值为 </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">ECS_ </span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">开头的都必须保留</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">和</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">ajax</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">相关</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">)</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">。</span> 3, <span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">非库文件内容不可放置到可编辑区域内,否则设置模板时,非库文件内容将被覆盖删除。</span></p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">brand.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品品牌页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">article.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">文章内容页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">article_cat.dwt </p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">文章列表页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">catalog.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">所有分类页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">category.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品列表页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">compare.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品比较页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">flow.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">购物车和购物流程页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">gallery.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品相册页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品详情页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">group_buy_goods.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">团购商品详情页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">group_buy_list.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">团购商品列表页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">index.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">首页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">message.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">信息提示页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">pick_out.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">选购中心页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">receive.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">收货确认信息页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">respond.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">在线支付结果提示信息页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">search.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品搜索页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">snatch.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">夺宝奇兵页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">tag_cloud.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">标签云页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">user_clips.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">用户中心页 (包含:欢迎页,我的留言,我的标签,收藏商品,缺货登记列表,添加缺货登记。)</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">user_passport.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">用户安全页(包含:会员登录,会员注册,找回密码。)</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">user_transaction.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">用户中心页 (包含:个人资料,我的红包,添加红包,我的订单,订单详情,合并订单,订单状态,商品列表,费用总计,收货人信息,支付方式,其他信息,会员余额。)</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td colspan="4" style="margin:0px; padding:0px; overflow:hidden" width="563"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">备注:库文件共<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">40</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">个 </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">格式 </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">.lbi)</span> 提醒:文件名尽量保存默认,否则在后台管理将无法管理库文件或不可预见错误。</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ad_position.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">广告位</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">bought_goods.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">购买过此商品的人购买过哪些商品</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">brand_goods.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">品牌的商品</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">brands.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">品牌专区</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">cart.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">购物车</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">cat_articles.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">文章列表</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">cat_goods.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">分类下的商品</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">category_tree.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品分类树</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">comments.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">用户评论列表 (<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">ajax</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">载入</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">comments_list.lbi</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">库文件。)</span></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">comments_list.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">用户评论内容</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">consignee.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">收货地址表单</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_article.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">相关文章</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_attrlinked.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">属性关联的商品</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_fittings.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">相关配件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_gallery.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品相册</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_list.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品列表</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_related.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">相关商品</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_tags.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品标记</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">group_buy.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">首页团购商品</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">help.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">网店帮助</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">history.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品浏览历史</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">invoice_query.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">发货单查询</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">member.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">会员登录 <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(ajax</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">载入</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">member_info.lbi</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">库文件。</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">)</span></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">member_info.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">会员登录表单和登录成功以后用户账户信息</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">new_articles.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">最新文章</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">order_total.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">订单费用总计</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">page_footer.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">页面脚部</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">page_header.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">页面顶部</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">pages.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">列表分页</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">recommend_best.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">精品推荐</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">recommend_hot.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">热卖商品</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">recommend_new.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">新品推荐</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">recommend_promotion.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">促销商品</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">search_form.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">搜索表单</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">snatch.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">夺宝奇兵出价表单 <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">必须被</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">id="ECS_SNATCH"</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">包含实现</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">ajax</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">刷新。</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">)</span></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">snatch_price.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">夺宝奇兵最新出价列表 <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">必须被</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">id="ECS_PRICE_LIST"</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">包含实现</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">ajax</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">刷新。</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">)</span></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">top10.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">销售排行</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ur_here.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">当前位置</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">user_menu.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">用户中心菜单</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> <tr> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">vote.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">库文件</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">在线调查</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不可更改</p></td> </tr> </tbody> </table> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ECSHOP <span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">布局参考图</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">适用版本</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">v2.1.5+)</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">文章列表页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: article_cat.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/70270359aea6975c403beb5bd8804ca8-0.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">文章内容页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: article.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/d61b6a0f9f82b41382161f5d4967391b-1.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品品牌页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: brand.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/a37c9c095637e2fdeaef1ea20edab7b7-2.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">所有分类页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: catalog.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/822fbe2281b800197865dda42e7e3502-3.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品列表页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: category.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/822fbe2281b800197865dda42e7e3502-4.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品比较页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: compare.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/cfd052dab54f89b5f3ed4853341ebd67-5.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">购物车和购物流程页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: flow.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/2912ccef50f223fcbde6b29412da2136-6.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品相册页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: gallery.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/304ab287c72743439cc7599e899738cc-7.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品详情页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: goods.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/6fc95246d3fc36b844b6158996f568ef-8.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">团购商品详情页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: group_buy_goods.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/11c4b6e1f88b9e7db91539f00ebc325d-9.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">团购商品列表页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: group_buy_list.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/8a4fa67b7f065cbd751d1e8a7a1df3de-10.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">首页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: index.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/b4bdcd29d0be7ed32d38459a3e97b2a9-11.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">信息提示页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: message.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/f3a3baf738b19a26ccb0bee821913fb2-12.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">选购中心页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: pick_out.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/f3a3baf738b19a26ccb0bee821913fb2-13.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">收货确认信息页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: receive.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/8dea014c8a3316853b5719dfd8bc5032-14.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">在线支付提示信息页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: respond.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/7ca1d72eff95998d07ddf236cc00e3fa-15.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">商品搜索页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: search.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/7ca1d72eff95998d07ddf236cc00e3fa-16.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">夺宝奇兵页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: snatch.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/064715ca8ee8ef66d37a6d28c76565e3-17.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">标签云页<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: tag_cloud.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/7bb61a248428f42a37985b53e08306c2-18.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">用户中心页(包含:欢迎页,我的留言,我的标签,收藏商品,缺货登记列表,添加缺货登记。)<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: user_clips.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/75957396d52e7a7e951a9245a1c61acc-19.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">用户安全页(包含:会员登录,会员注册,找回密码。)<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: user_passport.dwt</span></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/75957396d52e7a7e951a9245a1c61acc-20.png" style="max-width:90%" class="aligncenter"></p> <p style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">用户中心页 (包含:个人资料,我的红包,添加红包,我的订单,订单详情,合并订单,订单状态,商品列表,费用总计,收货人信息,支付方式,其他信息,会员余额。)<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">: user_transaction.dwt</span></p> <p style="margin-top: 15px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px; overflow: visible; text-indent: 2em;"><p></p> <p>以上就是认识 ecshop的详细内容,更多请关注本网内其它相关文章!</p> </div> <div class="_j4li5fcalmd"></div> <script type="text/javascript"> (window.slotbydup = window.slotbydup || []).push({ id: "u6949276", container: "_j4li5fcalmd", async: true }); </script> <!-- 多条广告如下脚本只需引入一次 --> <script type="text/javascript" src="//cpro.baidustatic.com/cpro/ui/cm.js" async="async" defer="defer" > </script> </div> <div class="mes-91-project"> <div class="title">你也想<span>0元试听</span>小码王编程课程吗?<br> 填写信息免费预约</div> <div class="form-group"> <form action="https://api.xmworld.cn/send/seo" method="post"> <input type="hidden" name="f_Source" value="官网表单-SEO"> <div class="list-group clearfix"> <label for="">您的称呼:</label> <div class="input-group"> <input type="text" value="" name="f_Name" placeholder="请输入您的称呼"> </div> </div> <div class="list-group clearfix"> <label for="">您所在的城市:</label> <div class="input-group half"> <input type="text" value="" name="f_School" placeholder="请输入您所在的城市名称"> </div> </div> <div class="list-group clearfix"> <label for="">联系电话:</label> <div class="input-group"> <input type="text" value="" name="f_Phone" placeholder="请输入您的手机号码"> </div> </div> <div class="button-group"> <button type="submit" class="leads-btn">免费预约试听课</button> </div> <div class="agree"> <div class="checkbox"> <input type="checkbox" checked="checked" name="allowProtocol" id="allowProtocol" value="0"> </div> <div>我已阅读并同意<a href="/declare/42128.html" target="_blank">《小码王法律声明及隐私政策》</a></div> </div> </form> </div> </div> <div id="switch"> <div class="container xm-flex"> <a href="/help/213932.html">上一篇 : 简明的PHPCMS安装使用教程</a> </div> <div class="container xm-flex"> <a href="/help/213934.html">下一篇 : 教你修改WordPress已添加的自定义栏目显示数量</a> </div> </div> <div id="declare"> <div class="container"> <div class="accountability"> 免责申明:以上展示内容来源于合作媒体、企业机构、网友提供或网络收集整理,版权争议与本站无关,文章涉及见解与观点不代表小码王官方立场,请读者仅做参考。本文标题:认识 ecshop,本文链接:https://www.xiaomawang.cn/help/213933.html;欢迎转载,转载请说明出处。若您认为本文侵犯了您的版权信息,或您发现该内容有任何涉及有违公德、触犯法律等违法信息,请您立即通过邮件(邮箱号:)联系我们及时修正或删除。 </div> </div> </div> </div> <div id="right"> <div id="recommend"> <video src="/style/video/2023/2023xmw-2.mp4" controls="true" autoplay="autoplay" controlslist="nodownload" style="display: block;width:100%;border: #F6f6f6 2px solid;" poster="/style/img/connect/video_img.png"></video> <div class="container"> <div class="title"> <span>少儿编程我选小码王</span> <br> 课程推荐 </div> <div class="package xm-flex"> <a href="/legao/" class="inner"> <div class="inner-pic"> <img src="/style/img/articledetail/recommend-pic05.png" alt=""> </div> <div class="inner-name"> 乐高机器人 </div> </a> <a href="/scratch/" class="inner"> <div class="inner-pic"> <img src="/style/img/articledetail/recommend-pic01.png" alt=""> </div> <div class="inner-name"> Scratch少儿编程 </div> </a> <a href="/python/" class="inner"> <div class="inner-pic"> <img src="/style/img/articledetail/recommend-pic02.png" alt=""> </div> <div class="inner-name"> Python少儿编程 </div> </a> <a href="/c/" class="inner"> <div class="inner-pic"> <img src="/style/img/articledetail/recommend-pic03.png" alt=""> </div> <div class="inner-name"> C/C++少儿编程 </div> </a> </div> </div> </div> <section class="multi-cb-filter"> <h2 class="clear-fix">招生政策推荐</h2> <ul class="multi-cb-filter-ul"> <li class="multi-filter-li"><a href="/bjzc/" title="北京">北京</a></li> <li class="multi-filter-li"><a href="/shzc/" title="上海">上海</a></li> <li class="multi-filter-li"><a href="/cqzc/" title="重庆">重庆</a></li> <li class="multi-filter-li"><a href="/tjzc/" title="天津">天津</a></li> <li class="multi-filter-li"><a href="/zjzc/" title="浙江">浙江</a></li> <li class="multi-filter-li"><a href="/fjzc/" title="福建">福建</a></li> <li class="multi-filter-li"><a href="/ahzc/" title="安徽">安徽</a></li> <li class="multi-filter-li"><a href="/gzzc/" title="贵州">贵州</a></li> <li class="multi-filter-li"><a href="/ynzc/" title="云南">云南</a></li> <li class="multi-filter-li"><a href="/jlzc/" title="吉林">吉林</a></li> <li class="multi-filter-li"><a href="/hnzc/" title="海南">海南</a></li> <li class="multi-filter-li"><a href="/gdzc/" title="广东">广东</a></li> <li class="multi-filter-li"><a href="/gxzc/" title="广西">广西</a></li> <li class="multi-filter-li"><a href="/hnzce/" title="湖南">湖南</a></li> <li class="multi-filter-li"><a href="/hbzc/" title="湖北">湖北</a></li> <li class="multi-filter-li"><a href="/henzce/" title="河南">河南</a></li> <li class="multi-filter-li"><a href="/hbzce/" title="河北">河北</a></li> <li class="multi-filter-li"><a href="/gszc/" title="甘肃">甘肃</a></li> <li class="multi-filter-li"><a href="/nxzc/" title="宁夏">宁夏</a></li> <li class="multi-filter-li"><a href="/sdzc/" title="山东">山东</a></li> <li class="multi-filter-li"><a href="/sxzce/" title="陕西">陕西</a></li> <li class="multi-filter-li"><a href="/sxzc/" title="山西">山西</a></li> <li class="multi-filter-li"><a href="/twzc/" title="台湾">台湾</a></li> <li class="multi-filter-li"><a href="/amzc/" title="澳门">澳门</a></li> <li class="multi-filter-li"><a href="/jszc/" title="江苏">江苏</a></li> <li class="multi-filter-li"><a href="/xjzc/" title="新疆">新疆</a></li> <li class="multi-filter-li"><a href="/jxzc/" title="江西">江西</a></li> <li class="multi-filter-li"><a href="/lnzc/" title="辽宁">辽宁</a></li> <li class="multi-filter-li"><a href="/xgzc/" title="香港">香港</a></li> <li class="multi-filter-li"><a href="/nmgzc/" title="内蒙古">内蒙古</a></li> <li class="multi-filter-li"><a href="/hljzc/" title="黑龙江">黑龙江</a></li> <li class="multi-filter-li"><a href="/sczc/" title="四川">四川</a></li> </ul> </section> <!---gg---> <div class="_bf3ph6e69du"></div> <script type="text/javascript"> (window.slotbydup = window.slotbydup || []).push({ id: "u6885223", container: "_bf3ph6e69du", async: true }); </script> <script type="text/javascript" src="//cpro.baidustatic.com/cpro/ui/cm.js" async="async" defer="defer"> </script> <!---gg---> <div id="advertising"> <div class="container"> <a href="javascript:;" class="pic xm-kf"> <img src="/style/img/articledetail/advertising-pic.png" alt=""> </a> <div class="name">学编程 我选小码王</div> </div> </div> <!---gg---> <script type="text/javascript"> (window.slotbydup = window.slotbydup || []).push({ id: "u6949275", container: "_klv9dx8siyg", async: true }); </script> <!---gg---> <div></div> <div class="_klv9dx8siyg"></div> <div id="information"> <div class="container"> <div class="title">最新教程资讯</div> <div class="package"> <ul class="list"> <li class="inner"> <a href="/help/231117.html"> 南京品茶喝茶外卖工作室推荐南京品茶外卖 </a> </li> <li class="inner"> <a href="/help/231077.html"> 如何寻找对接流畅、全程专业且配合度高的北 </a> </li> <li class="inner"> <a href="/help/231064.html"> 车厘子和樱桃有什么区别?终于把车厘子和樱 </a> </li> <li class="inner"> <a href="/help/230852.html"> 少儿编程课主要学什么内容?孩子学编程有什 </a> </li> <li class="inner"> <a href="/help/230851.html"> 少儿编程课程学费一般是多少? </a> </li> <li class="inner"> <a href="/help/230850.html"> 什么是少儿编程?少儿编程课程培训价格多少 </a> </li> <li class="inner"> <a href="/help/230849.html"> 如何编写内容更好的吸引用户(内容形式与用 </a> </li> <li class="inner"> <a href="/help/230848.html"> 如何对内容结构进行优化提升用户体验 </a> </li> </ul> </div> </div> </div> </div> </div> </div> </div> <div id="environment"> <div class="main"> <div class="content xm-flex"> <div class="inner wow fadeInUp" data-wow-delay="0s"> <div class="inner-pic"> <img src="/style/img/articledetail/environment-pic01.png" alt=""> </div> <div class="inner-name">校区接待前厅</div> </div> <div class="inner wow fadeInUp" data-wow-delay="0.3s"> <div class="inner-pic"> <img src="/style/img/articledetail/environment-pic02.png" alt=""> </div> <div class="inner-name">校区太空走廊</div> </div> <div class="inner wow fadeInUp" data-wow-delay="0.6s"> <div class="inner-pic"> <img src="/style/img/articledetail/environment-pic03.png" alt=""> </div> <div class="inner-name">校区教室环境</div> </div> <div class="inner wow fadeInUp" data-wow-delay="0.9s"> <div class="inner-pic"> <img src="/style/img/articledetail/environment-pic04.png" alt=""> </div> <div class="inner-name">校区多功能教室</div> </div> </div> </div> </div> <div clss="gd10"></div> <div id="footer" class="xm-min-w"> <div class="main"> <div class="content"> <div class="top xm-flex"> <div class="info-container"> <div class="logo"> <a href="/"><img src="/style/img/index/footer-logo.png" alt="小码王" title="小码王"></a> </div> <div class="info"> <div> <span class="column-name">联系我们</span> <span class="column-content">400-0596-872</span> </div> <div> <span class="column-name">总部地址</span> <span class="column-content">杭州 · 正元智慧大厦 · B幢13-14楼</span> </div> </div> </div> <div class="menu-container xm-flex"> <ul class="menu"> <li class="column-name">课程分类</li> <li> <a href="/legao/" class="column-content">乐高机器人</a> </li> <li> <a href="/scratch/" class="column-content">图形化编程</a> </li> <li> <a href="/python/" class="column-content">Python编程</a> </li> <li> <a href="/c/" class="column-content">C/C++编程</a> </li> </ul> <ul class="menu"> <li class="column-name">预约体验</li> <li> <a href="javascript:;" class="column-content xm-kf">预约体验课程</a> </li> <li> <a href="javascript:;" class="column-content xm-kf">线下国际游学</a> </li> <li> <a href="javascript:;" class="column-content xm-kf">线下集训营区</a> </li> <li> <a href="javascript:;" class="column-content xm-kf">线下校区体验</a> </li> </ul> <ul class="menu"> <li class="column-name">业务指南</li> <li> <a href="https://sso.xiaomawang.com/login.html/" class="column-content" target="_blank" rel="external nofollow">小码王在线</a> </li> <li> <a href="https://www.xiaomawang.vip/" class="column-content" target="_blank" rel="external nofollow">小码王信奥</a> </li> <li> <a href="https://world.xiaomawang.com" class="column-content" target="_blank" rel="external nofollow">小码王社区</a> </li> <li> <a href="https://www.xiaomaxuetang.cn/" class="column-content" target="_blank" rel="external nofollow">小码王校园</a> </li> </ul> <ul class="menu"> <li class="column-name">学习导航</li> <li> <a href="https://student-vip.xiaomawang.com/user/login" class="column-content" target="_blank" rel="external nofollow">线下学习平台</a> </li> <li> <a href="https://sso.xiaomawang.com/login.html" class="column-content" target="_blank" rel="external nofollow">线上学习中心</a> </li> <li> <a href="/live/" class="column-content">在线直播平台</a> </li> <li> <a href="https://www.acgo.cn" target="_blank" rel="external nofollow" class="column-content">信奥刷题平台</a> </li> </ul> <ul class="menu"> <li class="column-name">关于我们</li> <li> <a href="/about/" class="column-content">小码简介</a> </li> <li> <a href="/connect/" class="column-content">联系方式</a> </li> <li> <a href="/job/" class="column-content">加入我们</a> </li> <li> <a href="/connect/#suggest" class="column-content">投诉/退费</a> </li> </ul> </div> <div class="qr-container"> <div class="qr-pic"> <img src="/style/img/index/qrcode.jpg" alt="小码王公众号二维码"> </div> <div class="column-content">小码王课程资料</div> </div> </div> <div class="bottom"> <div class="friends-container xm-flex"> </div> <div class="right"> Copyright © 2016-2025 www.xiaomawang.cn 小码教育 版权所有 <br /> <a href="https://tsm.miit.gov.cn/dxxzsp/xkz/xkzgl/resource/qiyesearch.jsp?num=%E6%B5%99B2-20200939&type=xuke" rel="nofollow" target="_blank" class="column-content">增值电信业务经营许可证:浙B2-20200939</a> <a target="_blank" rel="external nofollow" href="http://beian.miit.gov.cn" class="column-content">网站备案号:浙ICP备16018668号-3</a> <a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=33010802011855" target="_blank" class="column-content-gwab column-content-gwaba"><img src="/style/img/index/gwab.png" alt="" class="column-content-gwabs" />浙公网安备 33010802011855号</a> </div> </div> </div> </div> </div> <script src="/style/js/53-kf.js"></script> <div id="xm-suspend" class="xm-min-w"> <div class="main"> <div class="content xm-flex"> <div class="xmj"> <img src="/style/img/xm/xm-suspend-xmj.png" alt=""> </div> <div class="slogan"> 小码王少儿编程体验课程免费预约 </div> <div class="leads xm-flex"> <form action="" class="xm-flex"> <input type="hidden" /> <input type="text" placeholder="请填写家长称呼" class="name" name="f_Name" required> <input type="text" placeholder="请填写接收老师信息手机号" class="phone" name="f_Phone" required> <button type="submit" class="leads-btn">免费领取体验课</button> </form> </div> </div> </div> </div> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?d6b8197cb325afd423c6930be87f79d5"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script type="text/javascript">var root_dir="";var ey_aid=213933;</script> <script language="javascript" type="text/javascript" src="/public/static/common/js/ey_footer.js?v=v1.7.1"></script> </body> <script src="/style/js/swiper.js"></script> <script src="/style/js/axios.min.js"></script> <script src="/style/js/jq.js"></script> <script src="/style/js/xm.js?a=20210806"></script> <script src="/style/js/articledetail.js"></script> </html>