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
dc1c2a95
Commit
dc1c2a95
authored
Jan 26, 2019
by
a123456
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Signed-off-by: a123456 <1209165801@qq.com>
parent
8621fc55
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
264 additions
and
31 deletions
+264
-31
head.ftl
src/main/webapp/WEB-INF/manager/mweixin/head.ftl
+0
-0
material-list.htm
src/main/webapp/WEB-INF/manager/mweixin/material-list.htm
+37
-0
menu.ftl
src/main/webapp/WEB-INF/manager/mweixin/menu.ftl
+15
-29
menu.css
src/main/webapp/static/css/menu.css
+105
-0
menu.css
src/main/webapp/static/mweixin/css/menu.css
+105
-0
menu.less
src/main/webapp/static/mweixin/less/menu.less
+2
-2
No files found.
src/main/webapp/WEB-INF/manager/mweixin/head.ftl
0 → 100644
View file @
dc1c2a95
src/main/webapp/WEB-INF/manager/mweixin/material-list.htm
0 → 100644
View file @
dc1c2a95
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title></title>
<!-- <#include "/include/head-file.ftl"/> -->
<!--#include virtual="../include/head-file.ftl" -->
<link
rel=
"stylesheet"
href=
"../../../static/mweixin/css/material-list.css"
>
</head>
<body>
<div
id=
"app"
>
<el-container>
<el-aside
width=
"140px"
>
<!--#include virtual="../include/menu.ftl" -->
</el-aside>
<el-container>
<el-header>
<!--#include virtual="../include/head.ftl" -->
</el-header>
<el-main>
</el-main>
</el-container>
</el-container>
</div>
</body>
</html>
<script>
new
Vue
({
el
:
"#app"
,
data
:
{},
methods
:
{},
mounted
:
function
()
{}
})
</script>
\ No newline at end of file
src/main/webapp/WEB-INF/manager/mweixin/menu.ftl
View file @
dc1c2a95
...
@@ -3,39 +3,25 @@
...
@@ -3,39 +3,25 @@
<head>
<head>
<title></title>
<title></title>
<!-- <#include "/include/head-file.ftl"/> -->
<!-- <#include "/include/head-file.ftl"/> -->
<link
rel=
"stylesheet"
href=
"../../../static/mweixin/css/menu.css"
>
<!--#include virtual="../include/head-file.ftl" -->
<!--#include virtual="../include/head-file.ftl" -->
<link
rel=
"stylesheet"
href=
"../../../static/mweixin/css/menu.css"
>
</head>
</head>
<body>
<body>
<div
id=
"app"
>
<div
id=
"app"
>
<el-container>
<!--左侧-->
<!--左侧-->
<div
class=
"ms-admin-title"
>
<el-aside
width=
"140px"
>
<i></i>
吕小布微信号
<div
class=
"ms-weixin-title"
>
</div>
<i></i>
吕小布微信号
<el-menu
class=
"ms-weixin-menu"
default-active=
"0"
>
</div>
<el-submenu
:index=
"i+''"
v-for=
"(menu,i) in menuList"
@
click=
"menuActive = menu"
>
<el-menu
class=
"ms-admin-menu"
default-active=
"0"
>
<template
slot=
"title"
>
<el-submenu
:index=
"i+''"
v-for=
"(menu,i) in menuList"
@
click=
"menuActive = menu"
>
<span
v-text=
"menu.title"
></span>
<template
slot=
"title"
>
</template>
<span
v-text=
"menu.title"
></span>
<el-menu-item-group>
</template>
<el-menu-item
class=
"ms-weixin-menu-item"
:index=
"i+'-'+index"
v-for=
"(sub,index) in menu.sub"
v-text=
"sub.title"
></el-menu-item>
<el-menu-item-group>
</el-menu-item-group>
<el-menu-item
class=
"ms-weixin-menu-item"
:index=
"i+'-'+index"
v-for=
"(sub,index) in menu.sub"
v-text=
"sub.title"
></el-menu-item>
</el-submenu>
</el-menu-item-group>
</el-menu>
</el-submenu>
</el-menu>
</el-aside>
<el-main>
<el-container>
<el-header>
</el-header>
<el-main>
</el-main>
</el-container>
</el-main>
</el-container>
</div>
</div>
</body>
</body>
</html>
</html>
...
...
src/main/webapp/static/css/menu.css
0 → 100644
View file @
dc1c2a95
/*
*这里的值严格按照UI设计图标注值来进行设置
*/
/*
*颜色
*/
/*
*页面的边距
*/
/*
*字体
*/
/*
*头像
*/
/*
* 按钮
*/
/*
*对常见的多行样式进行了方法封装,方便调用,加快开发效率
*/
html
,
body
{
min-height
:
100vh
;
background-color
:
#eee
;
margin
:
0
;
font-weight
:
initial
!important
;
font-size
:
14px
!important
;
color
:
#333
!important
;
}
html
*,
body
*
{
text-decoration
:
none
!important
;
font-family
:
Verdana
,
Arial
,
Helvetica
,
sans-serif
;
box-sizing
:
border-box
;
}
.ms-ellipsis
{
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
display
:
block
;
}
.ms-align-center
{
display
:
flex
;
align-items
:
center
;
}
input
::-webkit-input-placeholder
,
textarea
::-webkit-input-placeholder
{
font-weight
:
initial
;
font-size
:
12px
;
color
:
#999
;
resize
:
none
;
}
*
::-webkit-scrollbar
{
width
:
8px
;
height
:
8px
;
}
/*定义滚动条轨道 内阴影+圆角*/
*
::-webkit-scrollbar-track
{
border-radius
:
10px
;
/*滚动条的背景区域的圆角*/
background-color
:
#eee
;
/*滚动条的背景颜色*/
}
/*定义滑块 内阴影+圆角*/
*
::-webkit-scrollbar-thumb
{
border-radius
:
10px
;
/*滚动条的圆角*/
background-color
:
#ddd
;
/*滚动条的背景颜色*/
}
.ms-container
{
margin
:
12px
;
height
:
100%
;
padding
:
14px
14px
0
14px
;
background
:
#fff
;
}
.ms-header
{
padding
:
10px
;
margin
:
0
;
border-bottom
:
1px
solid
#ddd
;
background
:
#fff
;
height
:
50px
;
}
.ms-pagination
{
padding
:
20px
0
;
text-align
:
right
;
}
.ms-fr
{
float
:
right
;
}
.ms-tr
{
text-align
:
right
;
}
.el-button
+
.el-button
{
margin-left
:
0
;
}
.ms-weixin-title
{
height
:
50px
;
display
:
flex
;
align-items
:
center
;
}
.ms-weixin-menu-item
{
min-width
:
100%
!important
;
}
src/main/webapp/static/mweixin/css/menu.css
0 → 100644
View file @
dc1c2a95
/*
*这里的值严格按照UI设计图标注值来进行设置
*/
/*
*颜色
*/
/*
*页面的边距
*/
/*
*字体
*/
/*
*头像
*/
/*
* 按钮
*/
/*
*对常见的多行样式进行了方法封装,方便调用,加快开发效率
*/
html
,
body
{
min-height
:
100vh
;
background-color
:
#eee
;
margin
:
0
;
font-weight
:
initial
!important
;
font-size
:
14px
!important
;
color
:
#333
!important
;
}
html
*,
body
*
{
text-decoration
:
none
!important
;
font-family
:
Verdana
,
Arial
,
Helvetica
,
sans-serif
;
box-sizing
:
border-box
;
}
.ms-ellipsis
{
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
display
:
block
;
}
.ms-align-center
{
display
:
flex
;
align-items
:
center
;
}
input
::-webkit-input-placeholder
,
textarea
::-webkit-input-placeholder
{
font-weight
:
initial
;
font-size
:
12px
;
color
:
#999
;
resize
:
none
;
}
*
::-webkit-scrollbar
{
width
:
8px
;
height
:
8px
;
}
/*定义滚动条轨道 内阴影+圆角*/
*
::-webkit-scrollbar-track
{
border-radius
:
10px
;
/*滚动条的背景区域的圆角*/
background-color
:
#eee
;
/*滚动条的背景颜色*/
}
/*定义滑块 内阴影+圆角*/
*
::-webkit-scrollbar-thumb
{
border-radius
:
10px
;
/*滚动条的圆角*/
background-color
:
#ddd
;
/*滚动条的背景颜色*/
}
.ms-container
{
margin
:
12px
;
height
:
100%
;
padding
:
14px
14px
0
14px
;
background
:
#fff
;
}
.ms-header
{
padding
:
10px
;
margin
:
0
;
border-bottom
:
1px
solid
#ddd
;
background
:
#fff
;
height
:
50px
;
}
.ms-pagination
{
padding
:
20px
0
;
text-align
:
right
;
}
.ms-fr
{
float
:
right
;
}
.ms-tr
{
text-align
:
right
;
}
.el-button
+
.el-button
{
margin-left
:
0
;
}
.ms-admin-title
{
height
:
50px
;
display
:
flex
;
align-items
:
center
;
}
.ms-weixin-menu-item
{
min-width
:
100%
!important
;
}
src/main/webapp/static/mweixin/menu.less
→
src/main/webapp/static/mweixin/
less/
menu.less
View file @
dc1c2a95
@import "../ms-admin/4.7.0/less/app.less";
@import "../
../
ms-admin/4.7.0/less/app.less";
.ms-
weix
in-title {
.ms-
adm
in-title {
height: 50px;
height: 50px;
display: flex;
display: flex;
align-items: center;
align-items: center;
...
...
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