Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujun
tl_estate
Commits
ec55d802
Commit
ec55d802
authored
Mar 22, 2019
by
clone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
275ddbdd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
0 deletions
+36
-0
VideoCheck.php
application/index/controller/VideoCheck.php
+23
-0
video_check_list.html
application/index/view/video_check/video_check_list.html
+11
-0
route.php
application/route.php
+2
-0
No files found.
application/index/controller/VideoCheck.php
0 → 100644
View file @
ec55d802
<?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
application/index/view/video_check/video_check_list.html
0 → 100644
View file @
ec55d802
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
Title
</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
application/route.php
View file @
ec55d802
...
@@ -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'
]],
]);
]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment