Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gs1-office-web-sit
Overview
Overview
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
吴迪
gs1-office-web-sit
Commits
9cd35792
Commit
9cd35792
authored
Dec 14, 2021
by
吴迪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【新增】
parent
aca7ece3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
+9
-1
NewsServiceImpl.java
...o/office/modules/manage/service/impl/NewsServiceImpl.java
+9
-1
No files found.
src/main/java/io/office/modules/manage/service/impl/NewsServiceImpl.java
View file @
9cd35792
...
@@ -546,8 +546,16 @@ public class NewsServiceImpl extends ServiceImpl<NewsDao, NewsEntity> implements
...
@@ -546,8 +546,16 @@ public class NewsServiceImpl extends ServiceImpl<NewsDao, NewsEntity> implements
List
<
SearchVo
>
list
=
this
.
newsDao
.
getSearchInfo
(
name
,
page
);
List
<
SearchVo
>
list
=
this
.
newsDao
.
getSearchInfo
(
name
,
page
);
if
(
CollectionUtils
.
isNotEmpty
(
list
))
{
if
(
CollectionUtils
.
isNotEmpty
(
list
))
{
for
(
SearchVo
searchVo
:
list
)
{
for
(
SearchVo
searchVo
:
list
)
{
if
(
StringUtils
.
isNotBlank
(
searchVo
.
getContent
()))
{
if
(
StringUtils
.
isNotBlank
(
searchVo
.
getContent
()))
{
searchVo
.
setContent
(
""
);
searchVo
.
setContent
(
searchVo
.
getContent
().
replaceAll
(
name
,
"<font color='red'>"
+
name
+
"</font>"
));
}
if
(
StringUtils
.
isNotBlank
(
searchVo
.
getTitle
()))
{
searchVo
.
setTitle
(
searchVo
.
getTitle
().
replaceAll
(
name
,
"<font color='red'>"
+
name
+
"</font>"
));
}
if
(
StringUtils
.
isNotBlank
(
searchVo
.
getKeyword
()))
{
searchVo
.
setKeyword
(
searchVo
.
getKeyword
().
replaceAll
(
name
,
"<font color='red'>"
+
name
+
"</font>"
));
}
}
}
}
}
}
...
...
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