> 引入`liliuwei/thinkphp-jump`扩展
#### 在应用根目录执行以下命令
~~~
composer require liliuwei/thinkphp-jump
~~~

> 引入该扩展后会在全局配置目录生成`jump.php`文件
~~~
return[
// 默认跳转页面对应的模板文件
'dispatch_success_tmpl' => app()->getRootPath().'/vendor/liliuwei/thinkphp-jump/src/tpl/dispatch_jump.tpl',
'dispatch_error_tmpl' => app()->getRootPath().'/vendor/liliuwei/thinkphp-jump/src/tpl/dispatch_jump.tpl',
];
~~~
