Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Carpe diem
MCMS
Commits
16d24897
Commit
16d24897
authored
3 years ago
by
msgroup
Committed by
mingsoft
3 years ago
Browse files
Options
Download
Email Patches
Plain Diff
fix: 5.2.8待发布更新
parent
bc06d156
master
5.2.8
5.2.8
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+2
-3
pom.xml
src/main/webapp/WEB-INF/manager/main.ftl
+405
-10
src/main/webapp/WEB-INF/manager/main.ftl
with
407 additions
and
13 deletions
+407
-13
pom.xml
+
2
-
3
View file @
16d24897
...
...
@@ -49,13 +49,12 @@
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-basic
</artifactId>
<version>
2.1.13
</version>
<version>
2.1.13
.1
</version>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-mdiy
</artifactId>
<version>
2.1.13
</version>
<version>
2.1.13
.1
</version>
</dependency>
<!--store入口依赖(源码不开发),如果不需要MStore可以直接去掉依赖-->
<dependency>
...
...
This diff is collapsed.
Click to expand it.
src/main/webapp/WEB-INF/manager/main.ftl
+
405
-
10
View file @
16d24897
...
...
@@ -15,13 +15,17 @@
</div>
<div class="class-6" >
</div>
<div class="panel" style="min-height:
3
00px;
overflow:hidden;
">
<div class="panel" style="min-height:
2
00px;">
<div class="panel-title" style="display:inline;">
常用功能
<el-tooltip effect="dark" content="鼠标移至上方功能大全,点击菜单右侧五角星即可添加到常用功能。" placement="left">
<i class="el-icon-question"></i>
</el-tooltip>
</div>
<div class="v-space"></div>
<div class="panel-content" style="flex-direction: row;flex-wrap: wrap; flex: unset;margin-top:20px;">
<div class="mitem"
@click="window.parent.indexVue.openParentMenuIn
Id
(item.
id
)"
@click="window.parent.indexVue.openParentMenuIn
Title
(item.
title
)"
v-for="item in alwaysList">
<!--图标开始-->
<i :class="['iconfont',item.icon]"></i>
...
...
@@ -30,8 +34,6 @@
</div>
<!--文本结束-->
</div>
<!-- 空状态提示 -->
<el-empty v-if="alwaysList.length===0" description="暂无常用功能,鼠标移至上方功能大全,点击菜单右侧五角星即可添加到常用功能。" style="width:100%;padding:0;"></el-empty>
</div>
</div>
<!--大容器开始-->
...
...
@@ -320,15 +322,80 @@
alwaysList
:
[]
,
//常用功能列表
},
methods
:
{
jumpArtcleManager
:
function
()
{
window
.parent.indexVue.openMenu
({
modelId
:
706
,
modelTitle
:
'文章管理'
,
modelIcon
:
"icon-neirongguanli"
})
;
},
//栏目管理
jumpCategorymanager
:
function
()
{
window
.parent.indexVue.open
({
"modelId"
:
708
,
"modelTitle"
:
"栏目管理"
,
"modelId"
:
706
,
"modelUrl"
:
"cms/category/index.do"
})
;
},
//静态化
jumpStaticManager
:
function
()
{
window
.parent.indexVue.open
({
"modelId"
:
709
,
"modelTitle"
:
"静态化"
,
"modelId"
:
706
,
"modelUrl"
:
"cms/generate/index.do"
})
;
},
//管理员管理
jumpAdmininstatorManager
:
function
()
{
window
.parent.indexVue.open
({
"modelId"
:
411
,
"modelTitle"
:
"管理员管理"
,
"modelId"
:
23
,
"modelUrl"
:
"basic/manager/index.do"
})
;
},
//角色管理
jumpUserManager
:
function
()
{
window
.parent.indexVue.open
({
"modelId"
:
406
,
"modelTitle"
:
"角色管理"
,
"modelId"
:
23
,
"modelUrl"
:
"basic/role/index.do"
})
;
},
//菜单管理
jumpMenuManager
:
function
()
{
window
.parent.indexVue.open
({
"modelId"
:
183
,
"modelTitle"
:
"菜单管理"
,
"modelId"
:
23
,
"modelUrl"
:
"model/index.do"
})
;
},
getAlwaysList
:
function
()
{
var
markList
=
localStorage
.getItem
(
"markList"
)
;
if
(
markList
)
{
this
.alwaysList
=
JSON
.parse
(
markList
)
}
},
//模板管理
jumpTemplateManager
:
function
()
{
window
.parent.indexVue.open
({
"modelId"
:
87
,
"modelTitle"
:
"模板管理"
,
"modelId"
:
84
,
"modelUrl"
:
"template/index.do"
})
;
},
setCallBackFun
:
function
()
{
window
.parent.indexVue.addCallBackFun
(
this
.getAlwaysList
)
;
},
//应用管理
jumpApplicationManager
:
function
()
{
window
.parent.indexVue.open
({
"modelId"
:
86
,
"modelTitle"
:
"应用管理"
,
"modelId"
:
84
,
"modelUrl"
:
"app/-1/edit.do"
})
;
},
//铭飞开发文档
jumpMCMSDocument
:
function
()
{
window
.open
(
"http://doc.mingsoft.net/plugs-cms/"
)
;
...
...
@@ -1035,7 +1102,6 @@
animation-duration
:
1
s
;
font-size
:
24
px
;
line-height
:
1.4
;
max-width
:
100
%;
}
.class-47
{
...
...
@@ -1078,7 +1144,6 @@
animation-duration
:
1
s
;
font-size
:
24
px
;
line-height
:
1.4
;
max-width
:
100
%;
}
.class-50
{
...
...
@@ -1121,7 +1186,6 @@
animation-duration
:
1
s
;
font-size
:
24
px
;
line-height
:
1.4
;
max-width
:
100
%;
}
.class-53
{
...
...
@@ -1164,7 +1228,6 @@
animation-duration
:
1
s
;
font-size
:
24
px
;
line-height
:
1.4
;
max-width
:
100
%;
}
.class-56
{
...
...
@@ -2138,7 +2201,7 @@
max-width
:
100
%;
flex-direction
:
column
;
display
:
flex
;
margin-left
:
1
0
px
;
margin-left
:
2
0
px
;
animation-duration
:
1
s
;
background-repeat
:
no-repeat
;
}
...
...
@@ -2208,7 +2271,7 @@
max-width
:
100
%;
flex-direction
:
column
;
display
:
flex
;
margin-left
:
1
0
px
;
margin-left
:
2
0
px
;
animation-duration
:
1
s
;
background-repeat
:
no-repeat
;
}
...
...
@@ -2272,6 +2335,129 @@
width
:
80
px
;
padding-left
:
8
px
;
}
.class-4
{
}
.class-5
{
}
.class-6
{
}
.class-7
{
}
.class-8
{
}
.class-9
{
}
.class-10
{
}
.class-11
{
}
.class-12
{
}
.class-13
{
}
.class-14
{
}
.class-15
{
}
.class-16
{
}
.class-17
{
}
.class-18
{
}
.class-19
{
}
.class-20
{
}
.class-21
{
}
.class-22
{
}
.class-23
{
}
.class-24
{
}
.class-25
{
}
.class-26
{
}
.class-27
{
}
.class-28
{
}
.class-29
{
}
.class-30
{
}
.class-31
{
}
.class-32
{
}
.class-33
{
}
.class-34
{
}
.class-35
{
}
.class-36
{
}
.class-37
{
}
.class-38
{
}
.class-39
{
}
.class-40
{
}
.class-41
{
}
.class-42
{
}
.class-43
{
}
.class-44
{
}
.class-45
{
text-shadow
:
#
000
3
px
4
px
5
px
;
...
...
@@ -2281,6 +2467,9 @@
text-shadow
:
#
000
3
px
4
px
5
px
;
font-size
:
32
px
;
}
.class-47
{
}
.class-48
{
text-shadow
:
#
000
3
px
4
px
5
px
;
...
...
@@ -2290,6 +2479,9 @@
text-shadow
:
#
000
3
px
4
px
5
px
;
font-size
:
32
px
;
}
.class-50
{
}
.class-51
{
text-shadow
:
#
000
3
px
4
px
5
px
;
...
...
@@ -2299,6 +2491,9 @@
text-shadow
:
#
000
3
px
4
px
5
px
;
font-size
:
32
px
;
}
.class-53
{
}
.class-54
{
text-shadow
:
#
000
3
px
4
px
5
px
;
...
...
@@ -2362,34 +2557,102 @@
font-size
:
16
px
;
line-height
:
1.5
;
}
.class-61
{
}
.class-62
{
}
.class-63
{
}
.class-64
{
}
.class-65
{
padding-right
:
20
px
;
padding-left
:
20
px
;
}
.class-66
{
}
.class-67
{
}
.class-68
{
}
.class-69
{
font-size
:
14
px
;
}
.class-70
{
}
.class-71
{
padding-right
:
20
px
;
padding-left
:
20
px
;
}
.class-72
{
}
.class-73
{
}
.class-74
{
}
.class-75
{
font-size
:
14
px
;
}
.class-76
{
}
.class-77
{
padding-right
:
20
px
;
padding-left
:
20
px
;
}
.class-78
{
}
.class-79
{
}
.class-80
{
}
.class-81
{
font-size
:
14
px
;
}
.class-82
{
}
.class-83
{
padding-right
:
20
px
;
padding-left
:
20
px
;
}
.class-84
{
}
.class-85
{
}
.class-86
{
}
.class-87
{
font-size
:
14
px
;
}
.class-88
{
}
.class-89
{
padding-right
:
12
px
;
...
...
@@ -2431,6 +2694,138 @@
width
:
80
px
;
padding-left
:
8
px
;
}
.class-93
{
}
.class-94
{
}
.class-95
{
}
.class-96
{
}
.class-97
{
}
.class-98
{
}
.class-99
{
}
.class-100
{
}
.class-101
{
}
.class-102
{
}
.class-103
{
}
.class-104
{
}
.class-105
{
}
.class-106
{
}
.class-107
{
}
.class-108
{
}
.class-109
{
}
.class-110
{
}
.class-111
{
}
.class-112
{
}
.class-113
{
}
.class-114
{
}
.class-115
{
}
.class-116
{
}
.class-117
{
}
.class-118
{
}
.class-119
{
}
.class-120
{
}
.class-121
{
}
.class-122
{
}
.class-123
{
}
.class-124
{
}
.class-125
{
}
.class-126
{
}
.class-127
{
}
.class-128
{
}
.class-129
{
}
.class-130
{
}
.class-131
{
}
.class-132
{
}
.class-133
{
}
.class-134
{
}
.class-135
{
}
.class-136
{
}
}
#app
{
overflow-x
:
hidden
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
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
Menu
Projects
Groups
Snippets
Help