1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace think\response;
- use think\Response;
- class Jump extends Response
- {
- protected $contentType = 'text/html';
-
- protected function output($data)
- {
- $data = $this->app['view']->fetch($this->options['jump_template'], $data);
- return $data;
- }
- }
|