Commit ee9c57a5 authored by hujun's avatar hujun

财务管理

parent 03702502
<?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
{layout name="global/frame_tpl" /}
账户列表
\ No newline at end of file
{layout name="global/frame_tpl" /}
成交报告111
\ No newline at end of file
{layout name="global/frame_tpl" /}
退款列表
\ No newline at end of file
...@@ -166,6 +166,9 @@ Route::group('index', [ ...@@ -166,6 +166,9 @@ Route::group('index', [
'setting_index' => ['index/Setting/index', [ 'method' => 'get' ] ], //全局参数设置页面 'setting_index' => ['index/Setting/index', [ 'method' => 'get' ] ], //全局参数设置页面
'getSetting' => ['index/Setting/getSetting', [ 'method' => 'get|post' ] ], //新增和修改全局参数设置 'getSetting' => ['index/Setting/getSetting', [ 'method' => 'get|post' ] ], //新增和修改全局参数设置
'getMenu' => ['index/Auth/getMenu', [ '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' ] ], //财务 账户列表
]); ]);
......
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