Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
MCMS
Commits
1b080a16
Commit
1b080a16
authored
Jul 31, 2020
by
wujj
Browse files
链接地址
parent
31aff726
Changes
84
Hide whitespace changes
Inline
Side-by-side
src/main/webapp/templets/1/default/index.htm
View file @
1b080a16
...
@@ -190,7 +190,7 @@
...
@@ -190,7 +190,7 @@
<div
class=
"ms-content-news-main-title"
>
<div
class=
"ms-content-news-main-title"
>
<div
class=
"ms-content-news-main-title-words"
>
公司动态
</div>
<div
class=
"ms-content-news-main-title-words"
>
公司动态
</div>
<div
class=
"ms-content-news-main-title-more"
>
<div
class=
"ms-content-news-main-title-more"
>
<a
href=
'{ms:global.url/}/
59
/index.html'
>
MORE>>
</a>
<a
href=
'{ms:global.url/}/
xinwenzhongxin
/index.html'
>
MORE>>
</a>
</div>
</div>
</div>
</div>
<div
class=
"ms-content-news-main-img-text"
>
<div
class=
"ms-content-news-main-img-text"
>
...
...
src/main/webapp/templets/1/default/m/about.htm
deleted
100644 → 0
View file @
31aff726
<!DOCTYPE html>
<html>
<
#include
"/
m
/
head-file.htm
"
/>
<body>
<
#include
"/
m
/
head.htm
"
/>
<div
class=
"ms-banner"
>
<img
src=
"{ms:global.host/}/{ms:global.style/}/images/about.png"
class=
"am-img-responsive"
alt=
""
/>
</div>
<div
class=
"ms-about-content"
>
<div
class=
"am-tabs am-tabs-default ms-about-content-div"
>
<ul
class=
"am-tabs-nav am-cf"
>
<li
class=
"am-active ms-about-content-li"
>
<a
href=
"{ms:global.url/}/53/index.html"
>
关于我们
</a>
</li>
<li
class=
"ms-about-content-li"
>
<a
href=
"{ms:global.url/}/59/index.html"
>
公司动态
</a>
</li>
<li
class=
"ms-about-content-li"
>
<a
href=
"http://mingsoft.net/html/1//5527/index.html#faz"
>
发展历程
</a>
</li>
<li
class=
"ms-about-content-li"
>
<a
href=
"http://mingsoft.net/html/1//5527/index.html#lianx"
>
加入我们
</a>
</li>
<li
class=
"ms-about-content-li"
>
<a
href=
"{ms:global.url/}/19/index.html"
>
联系我们
</a>
</li>
</ul>
<div
class=
"am-tabs-bd ms-about-content-main"
>
<div
data-tab-panel-0
class=
""
>
{ms:field.content/}
</div>
</div>
</div>
</div>
<
#include
"/
m
/
footer.htm
"
/>
</body>
</html>
\ No newline at end of file
src/main/webapp/templets/1/default/m/advice.htm
deleted
100644 → 0
View file @
31aff726
<!DOCTYPE html>
<html>
<
#include
"/
m
/
head-file.htm
"
/>
<body>
<
#include
"/
m
/
head.htm
"
/>
<div
class=
"ms-banner"
>
<img
src=
"{ms:global.host/}/{ms:global.style/}/images/message.png"
alt=
""
width=
"100%"
/>
</div>
<div
class=
"ms-message-content"
>
<form
method=
"post"
id=
"postForm"
>
<p>
<input
type=
"text"
class=
"am-form-field am-radius"
name=
'name'
placeholder=
"姓名"
/>
</p>
<p>
<input
type=
"text"
class=
"am-form-field am-radius"
name=
'phone'
placeholder=
"手机"
/>
</p>
<div
class=
"am-form-group"
>
<textarea
class=
"am-form-field ms-content-form-message"
id=
"doc-ta-1"
name=
'content'
placeholder=
"留言"
></textarea>
</div>
<button
type=
"button"
class=
"am-btn am-btn-primary ms-content-button"
>
提交
</button>
</form>
</div>
<
#include
"/
m
/
footer.htm
"
/>
</body>
</html>
<script>
var
flag
=
false
;
$
(
"
.am-btn-primary
"
).
click
(
function
()
{
if
(
!
flag
)
{
$
.
ajax
({
type
:
"
POST
"
,
url
:
"
{ms:global.host/}/mdiy/diyForm/f2c131968438246e885e0feed7256dbc.do
"
,
data
:
$
(
"
#postForm
"
).
serialize
(),
success
:
function
(
msg
)
{
flag
=
true
;
alert
(
"
提交成功
"
);
}
});
}
else
{
alert
(
"
您已经提交过了!
"
);
}
})
/* 表单验证 */
function
verification
()
{
if
(
$
(
'
input[name="name"]
'
).
val
().
length
>=
1
&&
$
(
'
input[name="phone"]
'
).
val
().
length
>=
1
&&
$
(
'
.ms-content-form-message
'
).
val
().
length
>=
1
)
{
$
(
'
.ms-content-button
'
).
css
(
"
background-color
"
,
"
#009aff
"
);
$
(
'
.ms-content-button
'
).
css
(
"
pointer-events
"
,
'
visible
'
);
$
(
'
.ms-content-button
'
).
css
(
"
color
"
,
"
#fff
"
);
}
else
{
$
(
'
.ms-content-button
'
).
css
(
"
background-color
"
,
"
#fafafa
"
);
$
(
'
.ms-content-button
'
).
css
(
'
pointer-events
'
,
"
none
"
);
$
(
'
.ms-content-button
'
).
css
(
"
color
"
,
"
#ddd
"
);
}
}
$
(
'
input[name="name"]
'
).
on
(
"
input
"
,
function
()
{
verification
();
})
$
(
'
input[name="phone"]
'
).
on
(
"
input
"
,
function
()
{
verification
();
})
$
(
'
.ms-content-form-message
'
).
on
(
"
input
"
,
function
()
{
verification
();
})
</script>
\ No newline at end of file
src/main/webapp/templets/1/default/m/case-list.htm
deleted
100644 → 0
View file @
31aff726
<!DOCTYPE html>
<html>
<
#include
"/
m
/
head-file.htm
"
/>
<body>
<
#include
"/
m
/
head.htm
"
/>
<div
class=
"ms-banner"
>
<img
src=
"{ms:global.host/}/{ms:global.style/}/images/mo.png"
class=
"am-img-responsive"
alt=
""
/>
</div>
<div
class=
"ms-case-list"
id=
"am-active-1"
>
<ul
data-am-widget=
"gallery"
id=
'ms-ui'
class=
"am-gallery am-avg-sm-2 am-gallery-imgbordered"
>
{ms:arclist size=6 ispaging=true}
<li>
<div
class=
"am-gallery-item ms-case-div"
>
<a
href=
'[field.source/]'
><img
class=
"ms-case-list-img"
src=
"{ms:global.host/}[field.litpic/]"
alt=
"[field.title/]"
/></a>
</div>
</li>
{/ms:arclist}
</ul>
</div>
<
#include
"/
m
/
footer.htm
"
/>
</body>
</html>
<script>
var
time
=
1
;
$
(
window
).
scroll
(
function
()
{
var
scrollTop
=
$
(
this
).
scrollTop
();
var
scrollHeight
=
$
(
document
).
height
();
var
windowHeight
=
$
(
this
).
height
();
if
(
scrollTop
+
windowHeight
==
scrollHeight
)
{
var
time2
=
$
(
"
.ms-cur-
"
+
time
+
"
-1
"
).
text
()
$
(
"
#ul
"
+
time
).
load
(
time2
+
"
#ms-ui
"
);
$
(
"
#am-active-1
"
).
append
(
"
<div id=
\"
ul
"
+
(
time
+
1
)
+
"
\"
></div>
"
)
time
++
;
}
else
if
(
scrollTop
+
56
+
windowHeight
==
scrollHeight
){
var
time2
=
$
(
"
.ms-cur-
"
+
time
+
"
-1
"
).
text
()
$
(
"
#ul
"
+
time
).
load
(
time2
+
"
#ms-ui
"
);
$
(
"
#am-active-1
"
).
append
(
"
<div id=
\"
ul
"
+
(
time
+
1
)
+
"
\"
></div>
"
)
time
++
;
}
});
</script>
\ No newline at end of file
src/main/webapp/templets/1/default/m/contact.htm
deleted
100644 → 0
View file @
31aff726
<!DOCTYPE html>
<html>
<
#include
"/
m
/
head-file.htm
"
/>
<body>
<
#include
"/
m
/
head.htm
"
/>
<div
class=
"ms-banner"
>
<img
src=
"{ms:global.host/}/{ms:global.style/}/images/about.png"
class=
"am-img-responsive"
alt=
""
/>
</div>
<div
class=
"ms-about-content"
>
<div
class=
"am-tabs am-tabs-default ms-about-content-div"
>
<ul
class=
"am-tabs-nav am-cf"
>
<li
class=
"ms-about-content-li"
>
<a
href=
"{ms:global.url/}/53/index.html"
>
关于我们
</a>
</li>
<li
class=
"ms-about-content-li"
>
<a
href=
"{ms:global.url/}/59/index.html"
>
公司动态
</a>
</li>
<li
class=
"ms-about-content-li"
>
<a
href=
"http://mingsoft.net/html/1//5527/index.html#faz"
>
发展历程
</a>
</li>
<li
class=
"ms-about-content-li"
>
<a
href=
"http://mingsoft.net/html/1//5527/index.html#lianx"
>
加入我们
</a>
</li>
<li
class=
"am-active ms-about-content-li"
>
<a
href=
"{ms:global.url/}/19/index.html"
>
联系我们
</a>
</li>
</ul>
<div
class=
"am-tabs-bd ms-about-content-main"
>
<div
data-tab-panel-0
class=
""
>
{ms:field.content/}
</div>
</div>
</div>
</div>
<
#include
"/
m
/
footer.htm
"
/>
</body>
</html>
\ No newline at end of file
src/main/webapp/templets/1/default/m/css/jquery.sinaemotion.css
deleted
100644 → 0
View file @
31aff726
#emotions
{
left
:
0
;
width
:
395px
;
max-width
:
98%
;
font-size
:
12px
;
background
:
#fff
;
position
:
absolute
;
border
:
1px
solid
#E8E8E8
;
}
#emotions
a
{
color
:
#9ABBC8
;
padding
:
2px
7px
;
text-decoration
:
none
;
}
#emotions
img
{
border
:
0
;
}
#emotions
div
{
margin
:
5px
10px
;
padding
:
1px
;
overflow
:
hidden
;
}
#emotions
#prev
,
#emotions
#next
{
margin-left
:
3px
;
background
:
#eee
;
}
#emotions
.categorys
{
color
:
#ccc
;
height
:
23px
;
color
:
#9ABBC8
;
overflow
:
hidden
;
}
#emotions
.categorys
a
{
display
:
inline-block
;
}
#emotions
.categorys
a
:hover
{
text-decoration
:
underline
;
}
#emotions
.categorys
a
.current
{
cursor
:
default
;
background
:
#F0F0F0
;
-moz-border-radius
:
3px
;
-webkit-border-radius
:
3px
;
}
#emotions
.container
{
padding
:
1px
;
overflow
:
hidden
;
}
#emotions
.container
a
{
float
:
left
;
width
:
26px
;
height
:
22px
;
text-align
:
center
;
box-sizing
:
content-box
;
padding
:
4px
2px
;
margin
:
-1px
0
0
-1px
;
border
:
1px
solid
#e8e8e8
;
}
#emotions
.container
a
:hover
{
z-index
:
2
;
position
:
relative
;
border
:
1px
solid
#0095cd
;
}
#emotions
.page
{
text-align
:
right
;
}
#emotions
.page
a
.current
{
color
:
#666
;
background-color
:
#fff
;
}
#emotions
.page
a
{
margin-left
:
3px
;
color
:
#0078B6
;
background-color
:
#f3f3f3
;
}
#emotions
.page
a
:hover
{
background-color
:
#e7e7e7
;
}
\ No newline at end of file
src/main/webapp/templets/1/default/m/css/style.css
deleted
100644 → 0
View file @
31aff726
body
{
/*background-color: #262626*/
}
*
{
padding
:
0
;
margin
:
0
;
}
.container
{
max-width
:
800px
;
margin
:
0
auto
;
}
.slide
{
width
:
100%
;
min-height
:
180px
;
overflow
:
hidden
;
position
:
relative
;
height
:
300px
;
}
.slide
.img
{
overflow
:
hidden
;
position
:
absolute
;
transition
:
width
0.4s
,
height
0.4s
,
top
0.4s
,
left
0.4s
,
z-index
0.4s
;
}
.slide
.img
img
{
width
:
calc
(
100%
-
14px
);
height
:
calc
(
100%
-
14px
);
margin
:
7px
;
}
.slide
.img1
{
width
:
40%
;
/*height: 40%;*/
top
:
35%
;
left
:
-50%
;
z-index
:
1
;
}
.slide
.img2
{
width
:
60%
;
/*height: 60%;*/
top
:
25%
;
left
:
-20%
;
z-index
:
2
;
}
.slide
.img3
{
width
:
80%
;
/*height: 80%;*/
top
:
15%
;
left
:
10%
;
z-index
:
3
;
}
.slide
.img4
{
width
:
60%
;
/*height: 60%;*/
top
:
25%
;
left
:
60%
;
z-index
:
2
;
}
.slide
.img5
{
width
:
40%
;
/*height: 40%;*/
top
:
35%
;
left
:
110%
;
z-index
:
1
;
}
.slide-bt
{
position
:
absolute
;
left
:
50%
;
bottom
:
13%
;
z-index
:
10
;
}
.slide-bt
span
{
width
:
24px
;
height
:
8px
;
background
:
#c9caca
;
float
:
left
;
margin
:
5px
;
border-radius
:
4px
;
}
.slide
.slide-bt
.on
{
background
:
#ffd200
;
}
/* button{
width: 50px;
margin: 20px;
} */
\ No newline at end of file
src/main/webapp/templets/1/default/m/footer.htm
deleted
100644 → 0
View file @
31aff726
<div
class=
"ms-footer"
>
<footer
class=
"am-footer am-footer-default"
>
<div
class=
"am-footer-switch ms-footer-div"
>
<a
id=
"godesktop"
class=
"am-footer-desktop ms-footer-div-a"
href=
"{ms:global.url/}/53/index.html"
>
关于我们
</a>
<span
class=
"am-footer-divider ms-footer-div-a"
>
|
</span>
<a
id=
"godesktop"
class=
"am-footer-desktop ms-footer-div-a"
href=
"http://mingsoft.net/html/1//5527/index.html#faz"
>
发展历程
</a>
<span
class=
"am-footer-divider ms-footer-div-a"
>
|
</span>
<a
id=
"godesktop"
class=
"am-footer-desktop ms-footer-div-a"
href=
"{ms:global.url/}/19/index.html"
>
联系我们
</a>
</div>
<div
class=
"am-footer-miscs ms-footer-copyright"
>
<p>
版权所有©铭飞科技有限公司2012-2018保留一切权利
</p>
</div>
</footer>
</div>
\ No newline at end of file
src/main/webapp/templets/1/default/m/head-file.htm
deleted
100644 → 0
View file @
31aff726
<head>
<title>
{ms:global.name/}
</title>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/plugins/amazeui/2.7.2/css/amazeui.min.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/plugins/iconfont/1.0.0/iconfont.css"
/>
<link
rel=
"stylesheet"
type=
"text/less"
href=
"{ms:global.host/}/{ms:global.style/}/less/index.less"
/>
<link
rel=
"stylesheet"
type=
"text/less"
href=
"{ms:global.host/}/{ms:global.style/}/less/base.less"
/>
<link
rel=
"stylesheet"
type=
"text/less"
href=
"{ms:global.host/}/{ms:global.style/}/less/about.less"
/>
<link
rel=
"stylesheet"
type=
"text/less"
href=
"{ms:global.host/}/{ms:global.style/}/less/case-list.less"
/>
<link
rel=
"stylesheet"
type=
"text/less"
href=
"{ms:global.host/}/{ms:global.style/}/less/news-list.less"
/>
<link
rel=
"stylesheet"
type=
"text/less"
href=
"{ms:global.host/}/{ms:global.style/}/less/news-show.less"
/>
<link
rel=
"stylesheet"
type=
"text/less"
href=
"{ms:global.host/}/{ms:global.style/}/less/advice.less"
/>
<script
src=
"{ms:global.host/}/plugins/jquery/1.9.1/jquery-1.9.1.js"
></script>
<script
src=
"{ms:global.host/}/plugins/amazeui/2.7.2/js/amazeui.min.js"
></script>
<script
src=
"{ms:global.host/}/{ms:global.style/}/js/jiaoben.js"
></script>
<script
src=
"{ms:global.host/}/plugins/seajs/3.0.0/sea.js"
></script>
<!--vue-懒加载-表单验证-->
<script
src=
"{ms:global.host/}/plugins/vue/2.3.3/vue.min.js"
></script>
<script
src=
"{ms:global.host/}/plugins/validator/5.5.0/validator.min.js"
></script>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/css/style.css"
>
<script>
ms
.
config
({
base
:
"
{ms:global.host/}
"
,
filter
:
{
people
:
{
loginUrl
:
'
{ms:global.host/}
'
}
}
});
</script>
</head>
\ No newline at end of file
src/main/webapp/templets/1/default/m/head.htm
deleted
100644 → 0
View file @
31aff726
<div
class=
"ms-head"
>
<header
data-am-widget=
"header"
class=
"am-header am-header-default ms-head-background"
>
<div
class=
"am-header-left am-header-nav"
>
<a
href=
"{ms:global.host/}/"
class=
""
>
<i
class=
"iconfont"
>

</i>
</a>
</div>
<h1
style=
"height: 100%;"
class=
"am-header-title ms-header-title"
>
<a
href=
"{ms:global.host/}"
class=
""
>
<img
src=
"{ms:global.host/}/{ms:global.style/}/images/ms.ico"
>
</a>
</h1>
<nav
data-am-widget=
"menu"
class=
"am-menu am-menu-offcanvas1"
data-am-menu-offcanvas
>
<a
href=
"javascript: void(0)"
class=
"am-menu-toggle ms-head-menu"
style=
"/* height: 55px;line-height: 55px; */"
>
<i
class=
"am-menu-toggle-icon am-icon-bars"
style=
"/* height: 55px;line-height: 55px; */"
></i>
</a>
<div
class=
"am-offcanvas"
>
<div
class=
"am-offcanvas-bar"
>
<ul
class=
"am-menu-nav am-avg-sm-1"
>
<li
class=
""
>
<a
href=
"{ms:global.host/}"
class=
""
>
首页
</a>
</li>
<li
class=
"am-parent"
>
<a
href=
"##"
class=
""
>
走进铭飞
</a>
<ul
class=
"am-menu-sub am-collapse am-avg-sm-3 "
>
<li
class=
""
>
<a
href=
"{ms:global.url/}/53/index.html"
class=
""
>
关于我们
</a>
</li>
<li
class=
""
>
<a
href=
"{ms:global.url/}/59/index.html"
class=
""
>
公司动态
</a>
</li>
<li
class=
""
>
<a
href=
"http://mingsoft.net/html/1//5527/index.html#faz"
class=
""
>
发展历程
</a>
</li>
<li
class=
""
>
<a
href=
"http://mingsoft.net/html/1//5527/index.html#lianx"
class=
""
>
加入我们
</a>
</li>
<li
class=
""
>
<a
href=
"{ms:global.url/}/19/index.html"
class=
""
>
联系我们
</a>
</li>
</ul>
</li>
<li
class=
""
>
<a
href=
"{ms:global.url/}/149/index.html"
class=
""
>
案例
</a>
</li>
<li
class=
""
>
<a
href=
"http://mstore.mingsoft.net/mstoreShow.do"
class=
""
>
模板
&
插件
</a>
</li>
<li
class=
""
>
<a
href=
"{ms:global.url/}/19/142/index.html"
class=
""
>
在线留言
</a>
</li>
<li
class=
"am-parent"
>
<a>
技术支持
</a>
<ul
class=
"am-menu-sub am-collapse am-avg-sm-3 "
>
<li
class=
""
>
<a
href=
"http://bbs.mingsoft.net/mbbs/main.do"
class=
""
>
开源社区
</a>
</li>
<li
class=
""
>
<a
href=
"https://gitee.com/mingSoft/MCMS"
class=
""
>
源码下载
</a>
</li>
<li
class=
""
>
<a
href=
"http://doc.ms.mingsoft.net/plugs-cms/"
class=
""
>
使用手册
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</header>
</div>
\ No newline at end of file
src/main/webapp/templets/1/default/m/images/01.png
deleted
100644 → 0
View file @
31aff726
246 KB
src/main/webapp/templets/1/default/m/images/02.png
deleted
100644 → 0
View file @
31aff726
311 KB
src/main/webapp/templets/1/default/m/images/03.png
deleted
100644 → 0
View file @
31aff726
295 KB
src/main/webapp/templets/1/default/m/images/04.png
deleted
100644 → 0
View file @
31aff726
396 KB
src/main/webapp/templets/1/default/m/images/05.png
deleted
100644 → 0
View file @
31aff726
325 KB
src/main/webapp/templets/1/default/m/images/about.png
deleted
100644 → 0
View file @
31aff726
365 KB
src/main/webapp/templets/1/default/m/images/case.png
deleted
100644 → 0
View file @
31aff726
337 KB
src/main/webapp/templets/1/default/m/images/hu1.png
deleted
100644 → 0
View file @
31aff726
30.1 KB
src/main/webapp/templets/1/default/m/images/level-0.png
deleted
100644 → 0
View file @
31aff726
2.97 KB
src/main/webapp/templets/1/default/m/images/level-1.png
deleted
100644 → 0
View file @
31aff726
382 Bytes
Prev
1
2
3
4
5
Next
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