截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dispatch.php 342B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\shop\controller;
  3. use think\facade\View;
  4. class Dispatch
  5. {
  6. /**
  7. * @Notes: 错误提示
  8. * @Author: 张无忌
  9. * @param $msg
  10. * @return \think\response\View
  11. */
  12. public static function dispatch_error($msg)
  13. {
  14. View::assign('msg', $msg);
  15. return view('dispatch_error');
  16. }
  17. }