Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
李洋
/
消息系统
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
08503a1a
authored
Mar 30, 2023
by
CnChunfeng
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修改分页不正确
parent
bfca7bcb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
app/Http/Controllers/MessageApiController.php
app/Logic/SystemNoticeLogic.php
app/Http/Controllers/MessageApiController.php
View file @
08503a1a
...
...
@@ -40,7 +40,7 @@ class MessageApiController extends Controller
$data
=
$request
->
all
();
try
{
$returnData
=
(
new
SystemNoticeLogic
())
->
getSystemUpdateList
(
$data
);
echo
json_encode
([
'code'
=>
0
,
'count'
=>
count
(
$returnData
),
'data'
=>
$returnData
,
'msg'
=>
'获取成功'
]);
echo
json_encode
([
'code'
=>
0
,
'count'
=>
$returnData
[
'total'
],
'data'
=>
$returnData
[
'data'
]
,
'msg'
=>
'获取成功'
]);
exit
();
}
catch
(
\Exception
$e
){
echo
json_encode
([
'code'
=>
400
,
'msg'
=>
$e
->
getMessage
()]);
...
...
app/Logic/SystemNoticeLogic.php
View file @
08503a1a
...
...
@@ -38,7 +38,7 @@ class SystemNoticeLogic
$value
[
'data_json'
]
=
json_encode
(
$value
);
}
return
$returnData
[
'data'
]
;
return
$returnData
;
}
//获得系统宣讲列表
...
...
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