设置添加书签 无简介的时候为标题
This commit is contained in:
parent
1d9cdc7a7e
commit
11a29fb206
@ -1412,6 +1412,7 @@
|
|||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.header-list {
|
.header-list {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -101,6 +101,9 @@ public class SqBookmarkServiceImpl implements ISqBookmarkService
|
|||||||
@Override
|
@Override
|
||||||
public int insertSqBookmark(SqBookmark sqBookmark)
|
public int insertSqBookmark(SqBookmark sqBookmark)
|
||||||
{
|
{
|
||||||
|
if(null==sqBookmark.getDescription()||"".equals(sqBookmark.getDescription())){
|
||||||
|
sqBookmark.setDescription(sqBookmark.getTitle());
|
||||||
|
}
|
||||||
|
|
||||||
int i= sqBookmarkMapper.insertSqBookmark(sqBookmark);
|
int i= sqBookmarkMapper.insertSqBookmark(sqBookmark);
|
||||||
//传入的标签
|
//传入的标签
|
||||||
|
Loading…
x
Reference in New Issue
Block a user