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
ca667c97
Commit
ca667c97
authored
Jul 06, 2018
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
错误处理
parent
5c0045b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
News.php
application/index/controller/News.php
+4
-3
No files found.
application/index/controller/News.php
View file @
ca667c97
...
...
@@ -97,10 +97,11 @@ class News extends Basic
$data
[
'publisher_id'
]
=
$this
->
userId
;
$data
[
'cover_plan'
]
=
$this
->
params
[
'file_img'
];
$data
[
's_label_id'
]
=
$this
->
params
[
's_label_id'
];
$num
=
$this
->
m_news
->
editData
(
$data
,
$this
->
params
[
'id'
]);
if
(
$num
<
1
)
{
return
$this
->
response
(
101
,
'新增失败!'
);
try
{
$this
->
m_news
->
editData
(
$data
,
$this
->
params
[
'id'
]);
}
catch
(
\Exception
$e
)
{
return
$this
->
response
(
101
,
'新增或编辑失败!'
);
}
return
$this
->
response
(
200
,
'新增成功!'
);
...
...
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