Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
cms_sys
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
西魏
cms_sys
Commits
50b1dd92
Commit
50b1dd92
authored
Nov 28, 2020
by
wujj
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
527f2b27
fd764fdb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
37 additions
and
56 deletions
+37
-56
ContentAction.java
src/main/java/net/mingsoft/cms/action/ContentAction.java
+2
-2
GeneraterAction.java
src/main/java/net/mingsoft/cms/action/GeneraterAction.java
+0
-0
MCmsAction.java
src/main/java/net/mingsoft/cms/action/web/MCmsAction.java
+0
-0
ContentBean.java
src/main/java/net/mingsoft/cms/bean/ContentBean.java
+1
-7
ContentBizImpl.java
src/main/java/net/mingsoft/cms/biz/impl/ContentBizImpl.java
+3
-16
CategoryEntity.java
src/main/java/net/mingsoft/cms/entity/CategoryEntity.java
+1
-9
CmsParserUtil.java
src/main/java/net/mingsoft/cms/util/CmsParserUtil.java
+23
-16
form.ftl
src/main/webapp/WEB-INF/manager/cms/content/form.ftl
+3
-3
index.ftl
src/main/webapp/WEB-INF/manager/cms/content/index.ftl
+1
-1
main.ftl
src/main/webapp/WEB-INF/manager/cms/content/main.ftl
+1
-1
index.ftl
src/main/webapp/WEB-INF/manager/index.ftl
+2
-1
No files found.
src/main/java/net/mingsoft/cms/action/ContentAction.java
View file @
50b1dd92
...
@@ -123,9 +123,9 @@ public class ContentAction extends BaseAction {
...
@@ -123,9 +123,9 @@ public class ContentAction extends BaseAction {
*/
*/
@ApiOperation
(
value
=
"根据封面获取文章列表接口"
)
@ApiOperation
(
value
=
"根据封面获取文章列表接口"
)
@ApiImplicitParam
(
name
=
"categoryId"
,
value
=
"分类编号"
,
required
=
true
,
paramType
=
"query"
)
@ApiImplicitParam
(
name
=
"categoryId"
,
value
=
"分类编号"
,
required
=
true
,
paramType
=
"query"
)
@GetMapping
(
"/get
By
FengMian"
)
@GetMapping
(
"/get
From
FengMian"
)
@ResponseBody
@ResponseBody
public
ResultData
get
By
FengMian
(
@ModelAttribute
@ApiIgnore
ContentEntity
content
){
public
ResultData
get
From
FengMian
(
@ModelAttribute
@ApiIgnore
ContentEntity
content
){
if
(
content
.
getCategoryId
()
==
null
)
{
if
(
content
.
getCategoryId
()
==
null
)
{
return
ResultData
.
build
().
error
();
return
ResultData
.
build
().
error
();
}
}
...
...
src/main/java/net/mingsoft/cms/action/GeneraterAction.java
View file @
50b1dd92
This diff is collapsed.
Click to expand it.
src/main/java/net/mingsoft/cms/action/web/MCmsAction.java
View file @
50b1dd92
This diff is collapsed.
Click to expand it.
src/main/java/net/mingsoft/cms/bean/ContentBean.java
View file @
50b1dd92
...
@@ -37,13 +37,7 @@ public class ContentBean extends ContentEntity {
...
@@ -37,13 +37,7 @@ public class ContentBean extends ContentEntity {
*/
*/
private
String
noflag
;
private
String
noflag
;
// public String getStaticUrl() {
// return staticUrl;
// }
//
// public void setStaticUrl(String staticUrl) {
// this.staticUrl = staticUrl;
// }
public
String
getBeginTime
()
{
public
String
getBeginTime
()
{
return
beginTime
;
return
beginTime
;
...
...
src/main/java/net/mingsoft/cms/biz/impl/ContentBizImpl.java
View file @
50b1dd92
...
@@ -34,7 +34,6 @@ import net.mingsoft.cms.dao.ICategoryDao;
...
@@ -34,7 +34,6 @@ import net.mingsoft.cms.dao.ICategoryDao;
import
net.mingsoft.cms.entity.CategoryEntity
;
import
net.mingsoft.cms.entity.CategoryEntity
;
import
net.mingsoft.cms.entity.ContentEntity
;
import
net.mingsoft.cms.entity.ContentEntity
;
import
net.mingsoft.cms.util.CmsParserUtil
;
import
net.mingsoft.cms.util.CmsParserUtil
;
import
net.mingsoft.mdiy.bean.AttributeBean
;
import
net.mingsoft.mdiy.bean.PageBean
;
import
net.mingsoft.mdiy.bean.PageBean
;
import
net.mingsoft.mdiy.entity.ModelEntity
;
import
net.mingsoft.mdiy.entity.ModelEntity
;
import
net.mingsoft.mdiy.util.ParserUtil
;
import
net.mingsoft.mdiy.util.ParserUtil
;
...
@@ -122,7 +121,6 @@ public class ContentBizImpl extends BaseBizImpl<IContentDao, ContentEntity> imp
...
@@ -122,7 +121,6 @@ public class ContentBizImpl extends BaseBizImpl<IContentDao, ContentEntity> imp
// 网站风格物理路径
// 网站风格物理路径
List
<
CategoryBean
>
articleIdList
=
null
;
List
<
CategoryBean
>
articleIdList
=
null
;
List
<
CategoryEntity
>
categoryList
=
null
;
List
<
CategoryEntity
>
categoryList
=
null
;
AttributeBean
attributeBean
=
new
AttributeBean
();
ContentBean
contentBean
=
new
ContentBean
();
ContentBean
contentBean
=
new
ContentBean
();
contentBean
.
setBeginTime
(
dateTime
);
contentBean
.
setBeginTime
(
dateTime
);
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
...
@@ -145,12 +143,7 @@ public class ContentBizImpl extends BaseBizImpl<IContentDao, ContentEntity> imp
...
@@ -145,12 +143,7 @@ public class ContentBizImpl extends BaseBizImpl<IContentDao, ContentEntity> imp
LOG
.
error
(
"模板不存在:{}"
,
category
.
getCategoryUrl
());
LOG
.
error
(
"模板不存在:{}"
,
category
.
getCategoryUrl
());
continue
;
continue
;
}
}
// 获取文章列表表属性
ParserUtil
.
read
(
category
.
getCategoryListUrl
(),
map
,
page
,
attributeBean
);
contentBean
.
setFlag
(
attributeBean
.
getFlag
());
contentBean
.
setNoflag
(
attributeBean
.
getNoflag
());
contentBean
.
setOrder
(
attributeBean
.
getOrder
());
contentBean
.
setOrderBy
(
attributeBean
.
getOrderby
());
}
}
articleIdList
=
queryIdsByCategoryIdForParser
(
contentBean
);
articleIdList
=
queryIdsByCategoryIdForParser
(
contentBean
);
// 有符合条件的就更新
// 有符合条件的就更新
...
@@ -190,13 +183,7 @@ public class ContentBizImpl extends BaseBizImpl<IContentDao, ContentEntity> imp
...
@@ -190,13 +183,7 @@ public class ContentBizImpl extends BaseBizImpl<IContentDao, ContentEntity> imp
map
.
put
(
ParserUtil
.
HTML
,
ParserUtil
.
HTML
);
map
.
put
(
ParserUtil
.
HTML
,
ParserUtil
.
HTML
);
map
.
put
(
ParserUtil
.
URL
,
BasicUtil
.
getUrl
());
map
.
put
(
ParserUtil
.
URL
,
BasicUtil
.
getUrl
());
map
.
put
(
ParserUtil
.
PAGE
,
page
);
map
.
put
(
ParserUtil
.
PAGE
,
page
);
AttributeBean
attributeBean
=
new
AttributeBean
();
// 获取文章列表模板标签属性
ParserUtil
.
read
(
column
.
getCategoryListUrl
(),
map
,
page
,
attributeBean
);
contentBean
.
setFlag
(
attributeBean
.
getFlag
());
contentBean
.
setNoflag
(
attributeBean
.
getNoflag
());
contentBean
.
setOrder
(
attributeBean
.
getOrder
());
contentBean
.
setOrderBy
(
attributeBean
.
getOrderby
());
}
}
articleIdList
=
contentDao
.
queryIdsByCategoryIdForParser
(
contentBean
);
articleIdList
=
contentDao
.
queryIdsByCategoryIdForParser
(
contentBean
);
// 判断列表类型
// 判断列表类型
...
@@ -242,7 +229,7 @@ public class ContentBizImpl extends BaseBizImpl<IContentDao, ContentEntity> imp
...
@@ -242,7 +229,7 @@ public class ContentBizImpl extends BaseBizImpl<IContentDao, ContentEntity> imp
if
(
BasicUtil
.
getWebsiteApp
()
!=
null
){
if
(
BasicUtil
.
getWebsiteApp
()
!=
null
){
map
.
put
(
ParserUtil
.
APP_ID
,
BasicUtil
.
getWebsiteApp
().
getAppId
());
map
.
put
(
ParserUtil
.
APP_ID
,
BasicUtil
.
getWebsiteApp
().
getAppId
());
}
}
String
read
=
ParserUtil
.
re
ad
(
templatePath
,
map
);
String
read
=
ParserUtil
.
re
ndering
(
templatePath
,
map
);
FileUtil
.
writeString
(
read
,
ParserUtil
.
buildHtmlPath
(
targetPath
),
net
.
mingsoft
.
base
.
constant
.
Const
.
UTF8
);
FileUtil
.
writeString
(
read
,
ParserUtil
.
buildHtmlPath
(
targetPath
),
net
.
mingsoft
.
base
.
constant
.
Const
.
UTF8
);
}
}
...
...
src/main/java/net/mingsoft/cms/entity/CategoryEntity.java
View file @
50b1dd92
...
@@ -391,14 +391,6 @@ private static final long serialVersionUID = 1574925152750L;
...
@@ -391,14 +391,6 @@ private static final long serialVersionUID = 1574925152750L;
* 获取栏目图片 (标签使用)
* 获取栏目图片 (标签使用)
*/
*/
public
String
getTypelitpic
()
{
public
String
getTypelitpic
()
{
if
(
StrUtil
.
isNotBlank
(
categoryImg
)){
return
categoryImg
;
try
{
JSONArray
objects
=
JSON
.
parseArray
(
categoryImg
);
return
objects
.
getJSONObject
(
0
).
getString
(
"path"
);
}
catch
(
Exception
e
){
}
}
return
""
;
}
}
}
}
src/main/java/net/mingsoft/cms/util/CmsParserUtil.java
View file @
50b1dd92
...
@@ -11,7 +11,6 @@ import net.mingsoft.basic.util.BasicUtil;
...
@@ -11,7 +11,6 @@ import net.mingsoft.basic.util.BasicUtil;
import
net.mingsoft.basic.util.SpringUtil
;
import
net.mingsoft.basic.util.SpringUtil
;
import
net.mingsoft.cms.bean.CategoryBean
;
import
net.mingsoft.cms.bean.CategoryBean
;
import
net.mingsoft.cms.entity.CategoryEntity
;
import
net.mingsoft.cms.entity.CategoryEntity
;
import
net.mingsoft.mdiy.bean.AttributeBean
;
import
net.mingsoft.mdiy.bean.PageBean
;
import
net.mingsoft.mdiy.bean.PageBean
;
import
net.mingsoft.mdiy.biz.IModelBiz
;
import
net.mingsoft.mdiy.biz.IModelBiz
;
import
net.mingsoft.mdiy.biz.impl.ModelBizImpl
;
import
net.mingsoft.mdiy.biz.impl.ModelBizImpl
;
...
@@ -72,25 +71,36 @@ public class CmsParserUtil extends ParserUtil {
...
@@ -72,25 +71,36 @@ public class CmsParserUtil extends ParserUtil {
throws
TemplateNotFoundException
,
MalformedTemplateNameException
,
ParseException
,
IOException
{
throws
TemplateNotFoundException
,
MalformedTemplateNameException
,
ParseException
,
IOException
{
try
{
try
{
// 文章的栏目模型编号
// 文章的栏目模型编号
Integer
columnContentModelId
=
column
.
getMdiyModelId
();
PageBean
page
=
new
PageBean
();
PageBean
page
=
new
PageBean
();
page
.
setSize
(
10
);
//获取分页数量
//获取列表页显示的文章数量
//获取列表中的size
//获取总数
page
.
setSize
(
ParserUtil
.
getPageSize
(
column
.
getCategoryListUrl
(),
20
));
page
.
setRcount
(
articleIdTotal
);
int
totalPageSize
=
PageUtil
.
totalPage
(
articleIdTotal
,
page
.
getSize
());
page
.
setTotal
(
totalPageSize
);
//获取模板中列表标签中的条件
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
if
(
BasicUtil
.
getWebsiteApp
()
!=
null
)
{
map
.
put
(
ParserUtil
.
APP_ID
,
BasicUtil
.
getWebsiteApp
().
getAppId
());
}
map
.
put
(
ParserUtil
.
HTML
,
ParserUtil
.
HTML
);
map
.
put
(
ParserUtil
.
URL
,
BasicUtil
.
getUrl
());
map
.
put
(
ParserUtil
.
PAGE
,
page
);
String
columnListPath
;
String
columnListPath
;
ModelEntity
contentModel
=
null
;
ModelEntity
contentModel
=
null
;
// 判断当前栏目是否有自定义模型
// 判断当前栏目是否有自定义模型
if
(
column
ContentModelId
!=
null
)
{
if
(
column
.
getMdiyModelId
()
!=
null
)
{
// 通过栏目模型编号获取自定义模型实体
// 通过栏目模型编号获取自定义模型实体
contentModel
=
(
ModelEntity
)
SpringUtil
.
getBean
(
ModelBizImpl
.
class
).
getEntity
(
column
ContentModelId
);
contentModel
=
(
ModelEntity
)
SpringUtil
.
getBean
(
ModelBizImpl
.
class
).
getEntity
(
column
.
getMdiyModelId
()
);
}
}
int
pageNo
=
1
;
//全局参数设置
//全局参数设置
Map
<
String
,
Object
>
parserParams
=
new
HashMap
<
String
,
Object
>();
Map
<
String
,
Object
>
parserParams
=
new
HashMap
<
String
,
Object
>();
parserParams
.
put
(
ParserUtil
.
PAGE
,
page
);
parserParams
.
put
(
COLUMN
,
column
);
parserParams
.
put
(
COLUMN
,
column
);
//标签中使用field获取当前栏目
//标签中使用field获取当前栏目
parserParams
.
put
(
FIELD
,
column
);
parserParams
.
put
(
FIELD
,
column
);
...
@@ -107,18 +117,15 @@ public class CmsParserUtil extends ParserUtil {
...
@@ -107,18 +117,15 @@ public class CmsParserUtil extends ParserUtil {
if
(
ParserUtil
.
IS_SINGLE
)
{
if
(
ParserUtil
.
IS_SINGLE
)
{
parserParams
.
put
(
ParserUtil
.
URL
,
BasicUtil
.
getUrl
());
parserParams
.
put
(
ParserUtil
.
URL
,
BasicUtil
.
getUrl
());
}
}
parserParams
.
put
(
ParserUtil
.
PAGE
,
page
);
AttributeBean
attributeBean
=
new
AttributeBean
();
int
pageNo
=
1
;
ParserUtil
.
read
(
File
.
separator
+
column
.
getCategoryListUrl
(),
parserParams
,
page
,
attributeBean
);
int
totalPageSize
=
PageUtil
.
totalPage
(
articleIdTotal
,
page
.
getSize
());
page
.
setTotal
(
totalPageSize
);
//文章列表页没有写文章列表标签,总数为0
//文章列表页没有写文章列表标签,总数为0
if
(
totalPageSize
<=
0
)
{
if
(
totalPageSize
<=
0
)
{
// 数据库中第一页是从开始0*size
// 数据库中第一页是从开始0*size
columnListPath
=
ParserUtil
.
buildHtmlPath
(
column
.
getCategoryPath
()
+
File
.
separator
+
ParserUtil
.
INDEX
);
columnListPath
=
ParserUtil
.
buildHtmlPath
(
column
.
getCategoryPath
()
+
File
.
separator
+
ParserUtil
.
INDEX
);
// 设置分页的起始位置
// 设置分页的起始位置
page
.
setPageNo
(
pageNo
);
page
.
setPageNo
(
pageNo
);
String
read
=
ParserUtil
.
re
ad
(
File
.
separator
+
column
.
getCategoryListUrl
(),
parserParams
);
String
read
=
ParserUtil
.
re
ndering
(
File
.
separator
+
column
.
getCategoryListUrl
(),
parserParams
);
FileUtil
.
writeString
(
read
,
columnListPath
,
Const
.
UTF8
);
FileUtil
.
writeString
(
read
,
columnListPath
,
Const
.
UTF8
);
}
else
{
}
else
{
...
@@ -136,7 +143,7 @@ public class CmsParserUtil extends ParserUtil {
...
@@ -136,7 +143,7 @@ public class CmsParserUtil extends ParserUtil {
}
}
// 设置分页的起始位置
// 设置分页的起始位置
page
.
setPageNo
(
pageNo
);
page
.
setPageNo
(
pageNo
);
String
read
=
ParserUtil
.
re
ad
(
File
.
separator
+
column
.
getCategoryListUrl
(),
parserParams
);
String
read
=
ParserUtil
.
re
ndering
(
File
.
separator
+
column
.
getCategoryListUrl
(),
parserParams
);
FileUtil
.
writeString
(
read
,
columnListPath
,
Const
.
UTF8
);
FileUtil
.
writeString
(
read
,
columnListPath
,
Const
.
UTF8
);
pageNo
++;
pageNo
++;
}
}
...
...
src/main/webapp/WEB-INF/manager/cms/content/form.ftl
View file @
50b1dd92
...
@@ -525,9 +525,9 @@
...
@@ -525,9 +525,9 @@
});
});
},
},
//根据封面获取当前文章
//根据封面获取当前文章
get
By
FengMian
:
function
(
categoryId
)
{
get
From
FengMian
:
function
(
categoryId
)
{
var
that
=
this
;
var
that
=
this
;
ms
.
http
.
get
(
ms
.
manager
+
"/cms/content/get
By
FengMian.do"
,
{
ms
.
http
.
get
(
ms
.
manager
+
"/cms/content/get
From
FengMian.do"
,
{
"categoryId"
:
categoryId
"categoryId"
:
categoryId
}).
then
(
function
(
res
)
{
}).
then
(
function
(
res
)
{
if
(
res
.
result
)
{
if
(
res
.
result
)
{
...
@@ -680,7 +680,7 @@
...
@@ -680,7 +680,7 @@
this
.
get
(
this
.
form
.
id
);
this
.
get
(
this
.
form
.
id
);
}
}
if
(
this
.
type
)
{
if
(
this
.
type
)
{
this
.
get
By
FengMian
(
this
.
form
.
categoryId
);
this
.
get
From
FengMian
(
this
.
form
.
categoryId
);
this
.
returnIsShow
=
false
;
this
.
returnIsShow
=
false
;
}
}
}
}
...
...
src/main/webapp/WEB-INF/manager/cms/content/index.ftl
View file @
50b1dd92
...
@@ -122,7 +122,7 @@
...
@@ -122,7 +122,7 @@
#index
.left-tree
{
#index
.left-tree
{
min-height
:
100vh
;
min-height
:
100vh
;
background
:
#fff
;
background
:
#fff
;
width
:
18
0px
;
width
:
22
0px
;
border-right
:
solid
1px
#e6e6e6
;
border-right
:
solid
1px
#e6e6e6
;
}
}
...
...
src/main/webapp/WEB-INF/manager/cms/content/main.ftl
View file @
50b1dd92
...
@@ -68,7 +68,7 @@
...
@@ -68,7 +68,7 @@
</el-popover>
</el-popover>
</template>
</template>
</el-table-column>
</el-table-column>
<el-table-column
label=
"栏目名"
align=
"left"
prop=
"categoryId"
:formatter=
"contentCategoryIdFormat"
width=
"1
0
0"
>
<el-table-column
label=
"栏目名"
align=
"left"
prop=
"categoryId"
:formatter=
"contentCategoryIdFormat"
width=
"1
8
0"
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"文章标题"
align=
"left"
prop=
"contentTitle"
show-overflow-tooltip
>
<el-table-column
label=
"文章标题"
align=
"left"
prop=
"contentTitle"
show-overflow-tooltip
>
</el-table-column>
</el-table-column>
...
...
src/main/webapp/WEB-INF/manager/index.ftl
View file @
50b1dd92
...
@@ -328,7 +328,8 @@
...
@@ -328,7 +328,8 @@
})
})
if
(
sub
.
syncStoreUrl
)
{
if
(
sub
.
syncStoreUrl
)
{
sub
.
modelUrl
=
sub
.
syncStoreUrl
//sub.modelUrl = "http://store.web.i.mingsoft.net/#/?client=localhost:8080//ms";
sub
.
modelUrl
=
sub
.
syncStoreUrl
;
sub
.
modelTitle
=
'mstore'
;
sub
.
modelTitle
=
'mstore'
;
sub
.
isStore
=
true
;
sub
.
isStore
=
true
;
!
result
?
this
.
editableTabs
.
push
(
sub
)
:
""
!
result
?
this
.
editableTabs
.
push
(
sub
)
:
""
...
...
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