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
17f5ad42
Commit
17f5ad42
authored
Jan 20, 2020
by
huise
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复主页生成问题
parent
ba09b022
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
GeneraterAction.java
src/main/java/net/mingsoft/cms/action/GeneraterAction.java
+0
-1
resources.properties
...main/java/net/mingsoft/cms/resources/resources.properties
+1
-0
resources_zh_CN.properties
...ava/net/mingsoft/cms/resources/resources_zh_CN.properties
+1
-0
index.ftl
src/main/webapp/WEB-INF/manager/cms/generate/index.ftl
+7
-1
No files found.
src/main/java/net/mingsoft/cms/action/GeneraterAction.java
View file @
17f5ad42
...
...
@@ -24,7 +24,6 @@ package net.mingsoft.cms.action;
import
cn.hutool.core.bean.BeanUtil
;
import
cn.hutool.core.bean.copier.CopyOptions
;
import
cn.hutool.core.io.FileUtil
;
import
net.mingsoft.basic.action.BaseAction
;
import
net.mingsoft.basic.biz.IModelBiz
;
import
net.mingsoft.basic.entity.AppEntity
;
import
net.mingsoft.basic.util.BasicUtil
;
...
...
src/main/java/net/mingsoft/cms/resources/resources.properties
View file @
17f5ad42
...
...
@@ -33,3 +33,4 @@ category.id=\u6240\u5C5E\u680F\u76EE
content.sort
=
\u
81EA
\u
5B9A
\u
4E49
\u
987A
\u
5E8F
category.diy.url
=
\u
81EA
\u
5B9A
\u
4E49
\u
94FE
\u
63A5
content.keyword
=
\u5173\u
952E
\u
5B57
templet.file
=
\u
672A
\u
627E
\u5230\u
6A21
\u
677F
\u6587\u
4EF6
src/main/java/net/mingsoft/cms/resources/resources_zh_CN.properties
View file @
17f5ad42
...
...
@@ -33,3 +33,4 @@ category.id=\u6240\u5C5E\u680F\u76EE
content.sort
=
\u
81EA
\u
5B9A
\u
4E49
\u
987A
\u
5E8F
category.diy.url
=
\u
81EA
\u
5B9A
\u
4E49
\u
94FE
\u
63A5
content.keyword
=
\u5173\u
952E
\u
5B57
templet.file
=
\u
672A
\u
627E
\u5230\u
6A21
\u
677F
\u6587\u
4EF6
src/main/webapp/WEB-INF/manager/cms/generate/index.ftl
View file @
17f5ad42
...
...
@@ -128,7 +128,7 @@
homeLoading
:
false
,
articleLoading
:
false
,
columnLoading
:
false
,
template
:
'
index.htm
'
,
//主题模板
template
:
''
,
//主题模板
templateOptions
:[],
position
:
'index'
,
//位置
contentSection
:
'0'
,
//文章栏目
...
...
@@ -205,6 +205,12 @@
var
that
=
this
;
ms
.
http
.
get
(
ms
.
manager
+
'/template/queryTemplateFileForColumn.do'
,
{
pageSize
:
99999
}).
then
(
function
(
data
)
{
that
.
templateOptions
=
data
.
data
;
//寻找主页
var
template
=
that
.
templateOptions
.
find
(
function
(
x
)
{
return
x
.
indexOf
(
"index"
)
!=-
1
||
x
.
indexOf
(
"default"
)
!=-
1
;
})
//没有就找其他的
that
.
template
=
template
||
(
that
.
templateOptions
.
length
>
0
?
that
.
templateOptions
[
0
]:
""
);
}).
catch
(
function
(
err
)
{
console
.
log
(
err
);
});
...
...
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