|
@@ -3,9 +3,10 @@
|
|
|
namespace app\index\controller;
|
|
|
|
|
|
use app\common\controller\Frontend;
|
|
|
+use think\Controller;
|
|
|
use think\Db;
|
|
|
|
|
|
-class Index extends Frontend
|
|
|
+class Index extends Controller
|
|
|
{
|
|
|
|
|
|
protected $noNeedLogin = '*';
|
|
@@ -14,6 +15,7 @@ class Index extends Frontend
|
|
|
|
|
|
public function index()
|
|
|
{
|
|
|
+ exit;
|
|
|
return $this->view->fetch();
|
|
|
}
|
|
|
|