Map.php 255 B

1234567891011121314151617
  1. <?php
  2. namespace app\index\controller;
  3. use think\Controller;
  4. class Map extends Base
  5. {
  6. public function __construct()
  7. {
  8. parent::__construct();
  9. }
  10. public function index()
  11. {
  12. return $this->label_fetch('map/index');
  13. }
  14. }