Commit ec55d802 authored by clone's avatar clone

1

parent 275ddbdd
<?php
namespace app\index\controller;
use app\index\extend\Basic;
use think\Request;
/**
* Created by PhpStorm.
* User: zw
* Date: 2019/3/22
* Time: 13:56
*/
class VideoCheck extends Basic{
public function __construct(Request $request = null)
{
parent::__construct($request);
}
public function videoCheckList(){
$this->display("video_check_list");
}
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
...@@ -434,6 +434,8 @@ Route::group('index', [ ...@@ -434,6 +434,8 @@ Route::group('index', [
'userAccountBalanceList' => ['index/AccountBalance/userAccountBalanceList', ['method' => 'get|post']], 'userAccountBalanceList' => ['index/AccountBalance/userAccountBalanceList', ['method' => 'get|post']],
'check' => ['index/AccountBalance/check', ['method' => 'get|post']], 'check' => ['index/AccountBalance/check', ['method' => 'get|post']],
'videoCheckList' => ['index/VideoCheck/videoCheckList', ['method' => 'get|post']],
]); ]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment