中秋节快乐

This commit is contained in:
Alone
2024-09-14 17:00:49 +08:00
parent 610dee88cd
commit dff1b038b1
4286 changed files with 807503 additions and 6 deletions
+32
View File
@@ -0,0 +1,32 @@
// <?php
// namespace app\index\controller;
// use app\index\QfShop;
// use think\facade\View;
// class Error extends QfShop
// {
// public function __call($method, $args)
// {
// $error = $this->authorize();
// if ($error) {
// return $error;
// }
// View::assign('wechat', $this->wechat);
// if (file_exists(app_path() . "/view/" . strtolower($this->request->controller()) . "/" . $method . ".html")) {
// if (key_exists('callback', $args)) {
// View::assign('callback', $args['callback']);
// } else {
// View::assign('callback', '/admin');
// }
// return View::fetch();
// } else {
// return 404;
// }
// }
// public static function show($msg = null)
// {
// View::assign('msg', $msg);
// return View::fetch("/error");
// }
// }