Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
Jz-Php
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
PHP
Jz-Php
Commits
64326d17
提交
64326d17
authored
2月 07, 2020
作者:
chengye
浏览文件
操作
浏览文件
下载
差异文件
2020-2-7-1
上级
1f0d5f56
8e62c899
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
48 行增加
和
46 行删除
+48
-46
.gitignore
.gitignore
+2
-2
workspace.xml
.idea/workspace.xml
+0
-0
Invoice.php
application/em/controller/Invoice.php
+4
-2
cache.php
config/cache.php
+38
-38
database.php
config/database.php
+4
-4
没有找到文件。
.gitignore
浏览文件 @
64326d17
...
...
@@ -11,4 +11,5 @@
/LICENSE.txt
/phpinfo.php
/README.md
/think
\ No newline at end of file
/think
/config/database.php
.idea/workspace.xml
浏览文件 @
64326d17
差异被折叠。
点击展开。
application/em/controller/Invoice.php
浏览文件 @
64326d17
...
...
@@ -59,11 +59,13 @@ class Invoice extends Base
}
$page
=
Request
::
param
(
'page'
)
?
Request
::
param
(
'page'
)
:
1
;
$limit
=
Request
::
param
(
'limit'
)
?
Request
::
param
(
'limit'
)
:
10
;
$data
=
(
new
EmInvoice
)
->
getInvoiceList
(
$map
,
$page
,
$limit
);
$emInvModel
=
new
EmInvoice
;
$data
=
$emInvModel
->
getInvoiceList
(
$map
,
$page
,
$limit
);
foreach
(
$data
as
$key
=>
&
$v
)
{
$v
[
'status'
]
=
parseStatus
(
$v
[
'status'
]);
}
$InvoiceCount
=
(
new
EmInvoice
)
->
getInvoiceCount
(
$map
);
$InvoiceCount
=
$emInvModel
->
getInvoiceCount
(
$map
);
if
(
Request
::
param
(
'page'
)){
return
[
'code'
=>
0
,
'msg'
=>
''
,
'count'
=>
$InvoiceCount
,
'data'
=>
$data
];
}
...
...
config/cache.php
浏览文件 @
64326d17
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | 缓存设置
// +----------------------------------------------------------------------
return
[
// 缓存配置为复合类型
'type'
=>
'complex'
,
'default'
=>
[
'type'
=>
'file'
,
// 全局缓存有效期(0为永久有效)
'expire'
=>
0
,
// 缓存前缀
'prefix'
=>
''
,
// 缓存目录
'path'
=>
''
,
],
'redis'
=>
[
'type'
=>
'redis'
,
'host'
=>
'1
27.0.0.1'
,
// 全局缓存有效期(0为永久有效)
'expire'
=>
0
,
// 缓存前缀
'prefix'
=>
''
,
],
// 添加更多的缓存类型设置
];
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | 缓存设置
// +----------------------------------------------------------------------
return
[
// 缓存配置为复合类型
'type'
=>
'complex'
,
'default'
=>
[
'type'
=>
'file'
,
// 全局缓存有效期(0为永久有效)
'expire'
=>
0
,
// 缓存前缀
'prefix'
=>
''
,
// 缓存目录
'path'
=>
''
,
],
'redis'
=>
[
'type'
=>
'redis'
,
'host'
=>
'1
92.168.1.71'
,
// 全局缓存有效期(0为永久有效)
'expire'
=>
0
,
// 缓存前缀
'prefix'
=>
''
,
],
// 添加更多的缓存类型设置
];
config/database.php
浏览文件 @
64326d17
...
...
@@ -13,15 +13,15 @@ return [
// 数据库类型
'type'
=>
'mysql'
,
// 服务器地址
'hostname'
=>
'1
27.0.0.
1'
,
'hostname'
=>
'1
92.168.1.7
1'
,
// 数据库名
'database'
=>
'gonn'
,
'database'
=>
'gonn
_release
'
,
// 用户名
'username'
=>
'root'
,
// 密码
'password'
=>
'
pvv5718J0CwhNfn4B^8^H3igPj#oiQkX
'
,
'password'
=>
'
aLN%4Jx7ZsmsoMlOB0XEd7
'
,
// 端口
'hostport'
=>
'
1003
6'
,
'hostport'
=>
'
330
6'
,
// 连接dsn
'dsn'
=>
''
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论