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
ee9c57a5
Commit
ee9c57a5
authored
Mar 13, 2018
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
财务管理
parent
03702502
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
89 additions
and
0 deletions
+89
-0
Finance.php
application/index/controller/Finance.php
+77
-0
account.html
application/index/view/finance/account.html
+3
-0
index.html
application/index/view/finance/index.html
+3
-0
refund.html
application/index/view/finance/refund.html
+3
-0
route.php
application/route.php
+3
-0
No files found.
application/index/controller/Finance.php
0 → 100644
View file @
ee9c57a5
<?php
/**
* Created by PhpStorm.
* User: fuju
* Date: 2018/3/13
* Time: 15:48
*/
namespace
app\index\controller
;
use
app\index\extend\Basic
;
class
Finance
extends
Basic
{
/**
* 成交报告
*
* @return \think\response\View
*/
public
function
reportList
()
{
if
(
$this
->
request
->
isAjax
())
{
if
(
$this
->
request
->
get
())
{
}
else
{
}
}
else
{
$result
=
view
(
'finance/index'
);
}
return
$result
;
}
/**
* 退款审核
*
* @return \think\response\View
*/
public
function
refundList
()
{
if
(
$this
->
request
->
isAjax
())
{
if
(
$this
->
request
->
get
())
{
}
else
{
}
}
else
{
$result
=
view
(
'finance/refund'
);
}
return
$result
;
}
/**
* 账户列表
*
* @return \think\response\View
*/
public
function
accountList
()
{
if
(
$this
->
request
->
isAjax
())
{
if
(
$this
->
request
->
get
())
{
}
else
{
}
}
else
{
$result
=
view
(
'finance/account'
);
}
return
$result
;
}
}
\ No newline at end of file
application/index/view/finance/account.html
0 → 100644
View file @
ee9c57a5
{layout name="global/frame_tpl" /}
账户列表
\ No newline at end of file
application/index/view/finance/index.html
0 → 100644
View file @
ee9c57a5
{layout name="global/frame_tpl" /}
成交报告111
\ No newline at end of file
application/index/view/finance/refund.html
0 → 100644
View file @
ee9c57a5
{layout name="global/frame_tpl" /}
退款列表
\ No newline at end of file
application/route.php
View file @
ee9c57a5
...
...
@@ -166,6 +166,9 @@ Route::group('index', [
'setting_index'
=>
[
'index/Setting/index'
,
[
'method'
=>
'get'
]
],
//全局参数设置页面
'getSetting'
=>
[
'index/Setting/getSetting'
,
[
'method'
=>
'get|post'
]
],
//新增和修改全局参数设置
'getMenu'
=>
[
'index/Auth/getMenu'
,
[
'method'
=>
'get|post'
]
],
//新增和修改全局参数设置
'reportList'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get|post'
]
],
//财务 成交报告
'refundList'
=>
[
'index/Finance/refundList'
,
[
'method'
=>
'get|post'
]
],
//财务 退款
'accountList'
=>
[
'index/Finance/accountList'
,
[
'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