1234567891011121314151617181920212223242526 |
- <?php
- namespace think\route\dispatch;
- use think\Response;
- use think\route\Dispatch;
- class View extends Dispatch
- {
- public function exec()
- {
-
- $vars = array_merge($this->request->param(), $this->param);
- return Response::create($this->dispatch, 'view')->assign($vars);
- }
- }
|