Showing
2 changed files
with
22 additions
and
0 deletions
1 | +<?php | ||
2 | +// 前端开发添加的路由,对应需求 http://redmine.yoho.cn/issues/143, 后端开发完删除 | ||
3 | +// 首页 毕凯,赵彪 | ||
4 | +// 列表页 王成龙 | ||
5 | +use Action\AbstractAction; | ||
6 | +use Plugin\Helpers; | ||
7 | + | ||
8 | +class Sale1Controller extends AbstractAction | ||
9 | +{ | ||
10 | + public function indexAction() | ||
11 | + { | ||
12 | + $data = array( | ||
13 | + 'salePage' => true | ||
14 | + ); | ||
15 | + $this->_view->display('index', $data); | ||
16 | + } | ||
17 | +} |
-
Please register or login to post a comment