Route.php 949 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: chendeben
  5. * Date: 2018/6/20
  6. * Time: 下午2:26
  7. */
  8. namespace Heanup\App\Api\Config;
  9. use Heanup\Frame\Config;
  10. class Route extends Config
  11. {
  12. protected static $data = [
  13. [
  14. "name" => "分类",
  15. "pattern" => "/category/:s.html",//api/material/sort/beauty/pre
  16. "action" => "Heanup\App\Api\Controller\Category"
  17. ], [
  18. "name" => "搜索",
  19. "pattern" => "/kw/:s.html",//api/material/sort/beauty/pre
  20. "action" => "Heanup\App\Api\Controller\Search"
  21. ], [
  22. "name" => "详情页",
  23. "pattern" => "/product/:s.html",//api/material/sort/beauty/pre
  24. "action" => "Heanup\App\Api\Controller\Detail"
  25. ], [
  26. "name" => "专题页",
  27. "pattern" => "/pages/:s.html",//api/material/sort/beauty/pre
  28. "action" => "Heanup\App\Api\Controller\Pages"
  29. ]
  30. ];
  31. }