Route.php 450 B

1234567891011121314151617181920212223
  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. [
  15. "name" => "域名列表",
  16. "pattern" => "/vestacp/domain/:s",//api/material/sort/beauty/pre
  17. "action" => "Heanup\App\Api\Controller\Vestacp\Domain"
  18. ]
  19. ];
  20. }