ectouch第六讲 之表常用链接

ECTouch1.0 常用链接:
精品属性商品mobile/index.php?m=default&c=category&type=best

新品属性商品mobile/index.php?m=default&c=category&type=new

热卖属性商品mobile/index.php?m=default&c=category&type=hot

促销商品 mobile/index.php?m=default&c=category&type=promotion

团购商品mobile/index.php?m=default&c=groupbuy

积分商城mobile/index.php?m=default&c=exchange

优惠活动 mobile/index.php?m=default&c=activity

拍卖活动mobile/index.php?m=default&c=auction

专题详情页mobile/index.php?c=topic&a=index&id=1

批发列表
mobile/index.php?c=wholesale
访问文章所有分类列表
mobile/index.php?m=default&c=article&a=art_list
访问文章分类列表 id为分类id
mobile/index.php?m=default&c=article&a=art_list&id=1

(以上链接都可以省略 index.php?m=default)
想找到更多的隐藏链接 可以查看控制器文件 目录mobileincludeappsdefaultcontroller
访问控制器名 前缀部分 如ArticleController.class.php 就可以直接以mobile/index.php?m=default&c=article访问。如果不能访问 则需要指定访问里面可访问的方法 &a=方法名。

模板文件当中的写法:
热卖属性商品
mobile/index.php?m=default&c=category&type=hot == {:url('category/index',array('type'=>'hot'))}
如:
<a href="{:url('category/index',array('type'=>'hot'))}">{$lang.hot_goods}</a>

原文地址:https://www.cnblogs.com/c-961900940/p/4740288.html