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
22a39b91
Commit
22a39b91
authored
Mar 23, 2018
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
app_broker
parent
0c9ca54c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
52 additions
and
0 deletions
+52
-0
common.php
application/app_broker/common.php
+1
-0
config.php
application/app_broker/config.php
+6
-0
Index.php
application/app_broker/controller/Index.php
+24
-0
index.html
application/app_broker/view/index/index.html
+2
-0
app_broker.php
public/app_broker.php
+19
-0
No files found.
application/app_broker/common.php
0 → 100644
View file @
22a39b91
<?php
application/app_broker/config.php
0 → 100644
View file @
22a39b91
<?php
//配置文件
return
[
];
\ No newline at end of file
application/app_broker/controller/Index.php
0 → 100644
View file @
22a39b91
<?php
namespace
app\app\controller
;
use
app\model\AppVersion
;
use
app\model\HouseImgs
;
use
app\model\HouseInfos
;
use
think\Controller
;
use
think\Response
;
class
Index
{
public
function
__construct
()
{
}
public
function
index
()
{
return
view
(
'index/index'
);
}
}
application/app_broker/view/index/index.html
0 → 100644
View file @
22a39b91
11111111111111111
\ No newline at end of file
public/app_broker.php
0 → 100644
View file @
22a39b91
<?php
/**
* Created by PhpStorm.
* User : zw
* Date : 2017/12/14
* Time : 9:36
* Intro:
*/
// [ 应用入口文件 ]
// 定义应用目录
define
(
'APP_PATH'
,
__DIR__
.
'/../application/'
);
// 加载框架引导文件
require
__DIR__
.
'/../thinkphp/start.php'
;
// 读取自动生成定义文件
/*$build = include './../build.php';
// 运行自动生成
\think\Build::run($build);*/
\ No newline at end of file
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