This commit is contained in:
wujj 2020-10-29 11:44:00 +08:00
parent 3ffe552ffb
commit 37cffefb0d
122 changed files with 11 additions and 7978 deletions

View File

@ -23,7 +23,7 @@ ms:
upload:
enable-web: true #启用web层的上传
template: templets #模板文件夹支持重命名,不支持路径
template: template #模板文件夹支持重命名,不支持路径
path: upload #文件上传路径,可以根据实际写绝对路径
mapping: /upload/** #修改需要谨慎系统第一次部署可以随意修改如果已经有了上传数据再次修改会导致之前上传的文件404
denied: .exe,.jsp

View File

@ -49,16 +49,12 @@
class="ms-channel-path-index">
首页
</a>
<i class="iconfont icon-youjiantou" ></i>
<a href="#"
class="ms-channel-path-link">
互动交流
</a>
<i class="iconfont icon-youjiantou" ></i>
<a href="#"
class="ms-channel-path-link">
常见问题
{ms:channel type="path"}
<i class="iconfont icon-youjiantou"></i>
<a href="{ms:global.url/}${field.typelink}" class="ms-channel-path-link">
${field.typetitle}
</a>
{/ms:channel}
</div>
<div class="detail">
<div class="top">
@ -128,7 +124,7 @@
</span>
<a href="${global.url}${pre.link}"
>
${global.url}${pre.title}
${pre.title}
</a>
</div>
<div class="next">
@ -137,7 +133,7 @@
</span>
<a href="${global.url}${next.link}"
>
${global.url}${next.title}
${next.title}
</a>
</div>
</div>

View File

@ -64,7 +64,7 @@
</a>
</div>
<!--新闻列表(一行) - start -->
{ms:arclist ispaging=true}
{ms:arclist ispaging=true size=1}
<div class="ms-news-one-line">
<i class="iconfont icon-fangkuai ms-news-one-line-dot" ></i>
<a href="${global.url}${field.link}"

View File

@ -1,85 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<#include "head-file.htm"/>
</head>
<body>
<#include "head.htm"/>
<br/>son
{ms:channel type="son"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>top
{ms:channel type="top"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>level
{ms:channel type="level"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>self
{ms:channel type="self"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>sonOrLevel
{ms:channel type="sonOrLevel"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>path
{ms:channel type="path"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>parent
{ms:channel type="parent"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>nav
{ms:channel type="nav"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<div class="ms-banner" style="background:url({ms:global.host/}/{ms:global.style/}/images/about_us.jpg) no-repeat center;">
<p class="banner_tit_about animated fadeInLeft">关于我们</p>
<p class="banner_tit_about_des animated fadeInRight">About us</p>
</div>
<div class="ms-content-about">
<div class="ms-content-main">
<#include "menu-left.htm"/>
<div class="ms-content-right">
<div class="ms-content-right-position">
<a href="{ms:global.host/}">首页</a>
<span>></span>
<a href="{ms:field.typelink/}">{ms:field.typetitle/}</a>
</div>
<div class="ms-content-right-main">
<div class="ms-content-right-main-title">{ms:field.title/}</div>
<div class="ms-content-right-main-content">{ms:field.content/}</div>
</div>
</div>
</div>
</div>
<#include "footer.htm"/>
</body>
</html>

View File

@ -1,67 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<#include "head-file.htm"/>
</head>
<body>
<#include "head.htm"/>
<div class="ms-banner" style="background:url({ms:global.host/}/{ms:global.style/}/images/talk_online.jpeg) no-repeat center;">
<p class="banner_tit_other animated fadeInLeft">在线留言</p>
<p class="banner_tit_other_des animated fadeInRight">Talk online</p>
</div>
<div class="ms-content-advice">
<div class="ms-content-form-background">
<form class="ms-content-form" method="post" id="postForm">
<input class="ms-content-form-name" type="text" name="name" placeholder="姓名">
<input class="ms-content-form-phone" type="text" name="phone" placeholder="手机">
<textarea class="ms-content-form-message" name="words" placeholder="留言"></textarea>
<div class="ms-login-button">提交</div>
</form>
</div>
</div>
<#include "footer.htm"/>
</body>
</html>
<script>
/* 表单提交 */
var flag = false;
$(".ms-login-button").click(function() {
if(!flag) {
$.ajax({
type: "POST",
url: "{ms:global.host/}/mdiy/post/7df6529f9eaa26da7ae4e01c7f73aa06.do",
data: $("#postForm").serialize(),
success: function(msg) {
flag = true;
alert("提交成功");
location.reload();
}
});
} else {
alert("您已经提交过了!");
}
})
/* 表单验证 */
function verification() {
if($('input[name="name"]').val().length > 0 && $('input[name="phone"]').val().length > 0 && $('.ms-content-form-message').val().length > 0) {
$('.ms-login-button').css("background-color", "#009aff");
$('.ms-login-button').css("pointer-events", 'visible');
$('.ms-login-button').css("color", "#fff");
} else {
$('.ms-login-button').css("background-color", "#fafafa");
$('.ms-login-button').css('pointer-events', "none");
$('.ms-login-button').css("color", "#ddd");
}
}
$('input[name="name"]').keyup(function() {
verification();
})
$('input[name="phone"]').keyup(function() {
verification();
})
$('.ms-content-form-message').keyup(function() {
verification();
})
</script>

View File

@ -1,47 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<#include "head-file.htm"/>
</head>
<body>
<#include "head.htm"/>
<div class="ms-banner" style="background:url({ms:global.host/}/{ms:global.style/}/images/00.png) no-repeat center;">
<p class="banner_tit_other animated fadeInLeft">&nbsp;&nbsp;&nbsp;</p>
<p class="banner_tit_other_des animated fadeInRight">Case list</p>
</div>
<div class="ms-content-case">
<div class="ms-content-main">
{ms:arclist size=6 ispaging=true}
<div class="ms-content-main-case">
<div class="ms-content-main-case-img">
<img src="{ms:global.host/}[field.litpic/]">
</div>
<div class="ms-content-main-case-explain">
<div class="ms-content-main-case-title">[field.title/]</div>
<div class="ms-content-main-case-content">
<p class="ms-content-main-case-written">
[field.content/]
</p>
<!-- <p class="ms-content-main-case-QRcode">
<img src="./images/1471918025445.png">
</p> -->
</div>
<div class="ms-content-main-case-click">
<a target="_blank" href="[field.source/]">点击查看</a>
</div>
</div>
</div>
{/ms:arclist}
</div>
</div>
<#include "footer.htm"/>
</body>
</html>
<script type="text/javascript">
$(function() {
$('.ms-content-main-case').hover(function() {
$(this).find('.ms-content-main-case-explain').toggle();
});
});
</script>

View File

@ -1,143 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<#include "head-file.htm"/>
</head>
<body>
<#include "head.htm"/>
<div class="ms-banner" style="background:url({ms:global.host/}/{ms:global.style/}/images/contact_us.jpeg) no-repeat center;">
<p class="banner_tit_other animated fadeInLeft" >联系我们</p>
<p class="banner_tit_other_des animated fadeInRight">Contact us</p>
</div>
<div class="ms-content-about">
<div class="ms-content-main">
<#include "menu-left.htm"/>
<div class="ms-content-right">
<div class="ms-content-right-position">
<a href="{ms:global.host/}">首页</a>
<span>></span>
<a href="{ms:field.typelink/}">{ms:field.typetitle/}</a>
</div>
<div class="ms-content-right-main">
<div class="ms-content-right-main-title">联系我们</div>
<div class="ms-content-right-main-content"><!-- {ms:field.content/} -->
<style type="text/css">
.BMap_Marker img{
width: 100%;
height: 100%;
}
html,body{margin:0;padding:0;}
.iw_poi_title {color:#CC5522;font-size:14px;font-weight:bold;overflow:hidden;padding-right:13px;white-space:nowrap}
.iw_poi_content {font:12px arial,sans-serif;overflow:visible;padding-top:4px;white-space:-moz-pre-wrap;word-wrap:break-word}
</style>
<script type="text/javascript" src="http://api.map.baidu.com/api?key=&v=1.1&services=true"></script>
<body>
<!--百度地图容器-->
<div style="width:100%;height:550px;border:#ccc solid 1px;" id="dituContent"></div>
</body>
<script type="text/javascript">
//创建和初始化地图函数:
function initMap(){
createMap();//创建地图
setMapEvent();//设置地图事件
addMapControl();//向地图添加控件
addMarker();//向地图中添加marker
}
//创建地图函数:
function createMap(){
var map = new BMap.Map("dituContent");//在百度地图容器中创建一个地图
var point = new BMap.Point(116.737158,29.153633);//定义一个中心点坐标
map.centerAndZoom(point,9);//设定地图的中心点和坐标并将地图显示在地图容器中
window.map = map;//将map变量存储在全局
}
//地图事件设置函数:
function setMapEvent(){
map.enableDragging();//启用地图拖拽事件,默认启用(可不写)
map.enableScrollWheelZoom();//启用地图滚轮放大缩小
map.enableDoubleClickZoom();//启用鼠标双击放大,默认启用(可不写)
map.enableKeyboard();//启用键盘上下左右键移动地图
}
//地图控件添加函数:
function addMapControl(){
//向地图中添加缩放控件
var ctrl_nav = new BMap.NavigationControl({anchor:BMAP_ANCHOR_TOP_LEFT,type:BMAP_NAVIGATION_CONTROL_LARGE});
map.addControl(ctrl_nav);
//向地图中添加缩略图控件
var ctrl_ove = new BMap.OverviewMapControl({anchor:BMAP_ANCHOR_BOTTOM_RIGHT,isOpen:1});
map.addControl(ctrl_ove);
//向地图中添加比例尺控件
var ctrl_sca = new BMap.ScaleControl({anchor:BMAP_ANCHOR_BOTTOM_LEFT});
map.addControl(ctrl_sca);
}
//标注点数组
var markerArr = [{title:"铭飞科技(景德镇)有限公司",content:"江西省景德镇市昌江区&nbsp;枫林佳苑&nbsp;15栋A区&nbsp;三单元&nbsp;302室",point:"117.187869|29.282949",isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}}
,{title:"铭飞科技(南昌)办事处",content:"江西省南昌市青山湖区创新一路&nbsp;绿地新都会(西门)&nbsp;12栋2单元901室",point:"116.003117|28.683521",isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}}
];
//创建marker
function addMarker(){
for(var i=0;i<markerArr.length;i++){
var json = markerArr[i];
var p0 = json.point.split("|")[0];
var p1 = json.point.split("|")[1];
var point = new BMap.Point(p0,p1);
var iconImg = createIcon(json.icon);
var marker = new BMap.Marker(point,{icon:iconImg});
var iw = createInfoWindow(i);
var label = new BMap.Label(json.title,{"offset":new BMap.Size(json.icon.lb-json.icon.x+10,-20)});
marker.setLabel(label);
map.addOverlay(marker);
label.setStyle({
borderColor:"#808080",
color:"#333",
cursor:"pointer"
});
(function(){
var index = i;
var _iw = createInfoWindow(i);
var _marker = marker;
_marker.addEventListener("click",function(){
this.openInfoWindow(_iw);
});
_iw.addEventListener("open",function(){
_marker.getLabel().hide();
})
_iw.addEventListener("close",function(){
_marker.getLabel().show();
})
label.addEventListener("click",function(){
_marker.openInfoWindow(_iw);
})
if(!!json.isOpen){
label.hide();
_marker.openInfoWindow(_iw);
}
})()
}
}
//创建InfoWindow
function createInfoWindow(i){
var json = markerArr[i];
var iw = new BMap.InfoWindow("<b class='iw_poi_title' title='" + json.title + "'>" + json.title + "</b><div class='iw_poi_content'>"+json.content+"</div>");
return iw;
}
//创建一个Icon
function createIcon(json){
var icon = new BMap.Icon("{ms:global.host/}/{ms:global.style/}/images/img-2.png", new BMap.Size(json.w,json.h),{imageOffset: new BMap.Size(-json.l,-json.t),infoWindowOffset:new BMap.Size(json.lb+5,1),offset:new BMap.Size(json.x,json.h)})
return icon;
}
initMap();//创建和初始化地图
</script>
</div>
</div>
</div>
</div>
</div>
<#include "footer.htm"/>
</body>
</html>

View File

@ -1 +0,0 @@
.ms-content-about{margin-top:20px;margin-bottom:40px}.ms-content-about a:link{color:#000;text-decoration:none}.ms-content-about a:visited{color:#000;text-decoration:none}.ms-content-about a:active{color:#000;text-decoration:none}.ms-content-about a:hover{color:#000;text-decoration:none}.ms-content-about .ms-content-main{width:1200px;overflow:hidden;margin:auto}.ms-content-about .ms-content-main .ms-content-left{width:230px;float:left;margin-right:20px}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-title{font-weight:bold;background-color:#009aff;color:#fff;height:40px;line-height:40px;width:190px;padding:0 20px}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul{background-color:#fff;margin-top:1px;width:230px}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul a:hover{color:#fff}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul a:hover li{background-color:#54bcfe}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul a{color:#999999}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul li{height:40px;line-height:40px;font-size:14px;cursor:pointer;padding:0 20px}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul li .ms-content-left-li-more{float:right}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul .ms-content-left-li-first{color:#fff}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul .ms-content-left-li-first li{background-color:#54bcfe}.ms-content-about .ms-content-main .ms-content-right{overflow:hidden}.ms-content-about .ms-content-main .ms-content-right a:visited{color:#000000}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-position{font-size:14px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-position a:hover{color:#0099ff}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-position span{padding:0 5px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main{width:952px;background-color:#ffffff;min-height:450px;padding-bottom:20px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main .ms-content-right-main-content{margin:0 20px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main .ms-content-right-main-title{text-align:center;font-size:20px;padding-top:40px;padding-bottom:20px;border-bottom:1px solid #d0cfcf99 99;margin:20px}/*# sourceMappingURL=./about.css.map */

View File

@ -1 +0,0 @@
.ms-content-advice{margin-top:20px;margin-bottom:40px}.ms-content-advice .ms-content-form-background{width:1200px;height:480px;background-color:#ffffff;margin:auto;display:flex}.ms-content-advice .ms-content-form-background .ms-content-form{width:330px;margin:auto}.ms-content-advice .ms-content-form-background .ms-content-form ::-webkit-input-placeholder{color:#999}.ms-content-advice .ms-content-form-background .ms-content-form input::-webkit-input-placeholder,.ms-content-advice .ms-content-form-background .ms-content-form textarea::-webkit-input-placeholder{font-family:Arial,Verdana,Sans-serif}.ms-content-advice .ms-content-form-background .ms-content-form .ms-content-form-name,.ms-content-advice .ms-content-form-background .ms-content-form .ms-content-form-phone,.ms-content-advice .ms-content-form-background .ms-content-form .ms-content-form-message{width:308px;height:12px;padding:10px;display:block;border:1px solid #eeeeee;border-radius:3px;color:#555555;margin-bottom:20px}.ms-content-advice .ms-content-form-background .ms-content-form .ms-content-form-message{height:142px}.ms-content-advice .ms-content-form-background .ms-content-form .ms-login-button{pointer-events:none;width:330px;height:34px;line-height:34px;font-size:14px;color:#ddd;text-align:center;background-color:#fafafa;cursor:pointer;border-radius:4px}/*# sourceMappingURL=./advice.css.map */

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
.ms-content-case{background-color:#fff;overflow:hidden;padding-top:20px}.ms-content-case a:visited{color:#000000}.ms-content-case .ms-content-main{width:1200px;min-height:400px;margin:auto;overflow:hidden}.ms-content-case .ms-content-main .ms-content-main-case:nth-child(3n){margin-right:0}.ms-content-case .ms-content-main .ms-content-main-case{border:1px solid #f0f0f0;width:384px;height:332px;margin-right:20px;float:left;position:relative;overflow:hidden;color:#ffffff;margin-top:20px}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-img{width:387px;height:334px}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-img img{width:100%;height:100%}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain{display:none;width:100%;height:100%;background-color:#0099ff;opacity:.9;position:absolute;top:0;left:0}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain .ms-content-main-case-title{font-size:22px;text-align:center;margin:20px 0;padding:0 20px;height:22px;line-height:22px;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain .ms-content-main-case-content{min-height:215px}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain .ms-content-main-case-content p{font-size:14px;padding:0 30px;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:4;-webkit-box-orient:vertical;display:-webkit-box}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain .ms-content-main-case-content p img{width:100px;text-align:center;margin:20px 0;height:100px}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain .ms-content-main-case-click{text-align:center}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain .ms-content-main-case-click a{border:1px solid #ffffff;border-radius:17px;padding:5px 39px;color:#ffffff}.ms-content-case .ms-content-main .ms-content-main-case-left{margin-right:0}.ms-content-case #ms-case-page{margin-top:50px}.ms-content-case #ms-case-page a:hover{background-color:#eee}.ms-content-case .ms-content-main-page{text-align:center;margin-top:30px;margin-bottom:50px}.ms-content-case .ms-content-main-page a{color:#999;font-size:14px}.ms-content-case .ms-content-main-page .ms-content-main-page-first,.ms-content-case .ms-content-main-page .ms-content-main-page-last{border:1px solid #ddd;padding:10px 15px;margin-right:-5px}.ms-content-case .ms-content-main-page .ms-content-main-page-upper,.ms-content-case .ms-content-main-page .ms-content-main-page-next{border-top:1px solid #ddd;border-bottom:1px solid #ddd;padding:10px 15px;margin-right:-5px}.ms-content-case .ms-content-main-page .ms-content-main-page-upper{border-right:1px solid #ddd}.ms-content-case .ms-content-main-page .ms-content-main-page-first{border-top-left-radius:4px;border-bottom-left-radius:4px}.ms-content-case .ms-content-main-page .ms-content-main-page-last{border-top-right-radius:4px;border-bottom-right-radius:4px}/*# sourceMappingURL=./case-list.css.map */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,79 +0,0 @@
#emotions{
left:0;
width: 395px;
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;
}

View File

@ -1 +0,0 @@
html,body,#login{height:100%}body{background-color:#ffffff}body,p{margin:0}input:focus,textarea:focus{outline:none}#login{display:flex;flex-direction:column;height:893px;min-width:1200px;background:url("../images/pic.png") no-repeat;background-position:50%}#login .ms-none{display:none !important}#login .ms-login-float{float:left}#login .ms-head,#login .ms-footer,#login .ms-content-form,#login .ms-content-code{background-color:#ffffff}#login .ms-head-line,#login .ms-head-welcome-login,#login .ms-footer{color:#999999}#login .ms-head-welcome-login,#login .ms-login-english-title,#login .ms-login-remmember-password,#login .ms-footer{font-size:12px}#login .ms-head{vertical-align:middle;height:22px;padding:34px 46px;display:flex;align-content:center}#login .ms-head a{width:147px}#login .ms-head img{height:100%}#login .ms-head .ms-head-welcome-login{margin-top:4px;font-size:1rem !important}#login .ms-head .ms-head-line{margin:0 12px;border-left:1px solid #999}#login .ms-content{flex:1;position:relative}#login .ms-content .ms-content-form,#login .ms-content .ms-content-code{width:280px;height:215px;padding:24px 20px;position:absolute;right:160px;top:25%;box-shadow:2px 2px 8px 6px #3bb1ff}#login .ms-content #ms-content-form-register{height:260px}#login .ms-content .ms-login-chinese-title{color:#0099ff;font-size:16px;line-height:15px}#login .ms-content .ms-login-code{position:absolute;top:4px;right:4px}#login .ms-content .ms-login-code-title{color:#0099ff;font-size:12px}#login .ms-content .ms-content-form .ms-login-title{line-height:13px}#login .ms-content .ms-content-form .ms-login-english-title,#login .ms-content .ms-content-form .ms-login-remmember-password,#login .ms-content .ms-content-form .ms-login-code-text{color:#999999}#login .ms-content .ms-content-form .ms-login-people-name,#login .ms-content .ms-content-form .ms-login-remmember-password{margin-bottom:12px}#login .ms-content .ms-content-form .ms-login-error-text{height:15px;font-size:12px;color:#e4393c;display:flex;align-items:center;padding:5px 0}#login .ms-content .ms-content-form .ms-login-error-text img{padding-right:5px}#login .ms-content .ms-content-form input{border:1px solid #eeeeee;border-radius:3px;color:#555555;outline-color:#0099ff}#login .ms-content .ms-content-form input::-webkit-input-placeholder{color:#999999}#login .ms-content .ms-content-form input::-moz-placeholder{color:#999999}#login .ms-content .ms-content-form .ms-login-people-name{width:260px;height:20px;padding:5px 10px}#login .ms-content .ms-content-form .ms-error{border:1px solid #e4393c}#login .ms-content .ms-content-form .ms-login-remmember-password{display:flex;line-height:13px;align-items:center;height:13px}#login .ms-content .ms-content-form .ms-login-remmember-password input[type="checkbox"]{margin:0 6px 0 0}#login .ms-content .ms-content-form .ms-login-button{pointer-events:none;background-color:#fafafa;color:#ddd;width:100%;height:34px;line-height:34px;font-size:14px;text-align:center;cursor:pointer;border-radius:4px}#login .ms-content .ms-content-form .login-code{overflow:hidden;margin-bottom:12px}#login .ms-content .ms-content-form .login-code .login-code-input{width:114px;height:12px;padding:10px}#login .ms-content .ms-content-form .login-code .login-code-input,#login .ms-content .ms-content-form .login-code .login-code-img{margin-right:11px}#login .ms-content .ms-content-form .login-code .login-code-img{height:34px}#login .ms-content .ms-content-form .login-code .login-code-text{font-size:10px}#login .ms-content .ms-content-form .login-code .login-code-change{cursor:pointer;color:#0099ff}#login .ms-content .ms-content-form .login-code .login-code-rompt{color:#999}#login .ms-content .ms-content-form .ms-login-rand-code{width:110px;height:12px;padding:10px}#login .ms-content .ms-content-form .ms-login-rand-code-img{height:34px}#login .ms-content .ms-content-code .ms-computer-title{background:url(../images/frame.png) no-repeat;position:absolute;top:10px;background-size:100% 100%;color:#ffffff;font-size:10px;width:90px;right:45px}#login .ms-content .ms-content-code .ms-login-weixin{text-align:center}#login .ms-content .ms-content-code .ms-login-weixin img{margin:auto;display:block;margin-top:18px;margin-bottom:16px}#login .ms-content .ms-login-button:hover,#login .ms-content .ms-login-button:active{background-color:#0086ff}#login .ms-footer{height:40px;padding:40px 0;text-align:center}#login .ms-footer a:link{color:#999999;text-decoration:none}#login .ms-footer a:visited{color:#999999;text-decoration:none}#login .ms-footer a:active{color:#999999;text-decoration:none}#login .ms-footer a:hover{color:#0099ff;text-decoration:none}#login .ms-footer p{margin:0 0 18px 0;line-height:11px}#login .ms-footer p:last-child{margin:0}/*# sourceMappingURL=./login.css.map */

View File

@ -1 +0,0 @@
.ms-content{margin:20px 0}.ms-content .ms-content-left{width:230px;float:left;margin-right:20px}.ms-content .ms-content-left .ms-content-left-title{font-weight:bold;background-color:#009aff;color:#fff;height:40px;line-height:40px;width:190px;padding:0 20px}.ms-content .ms-content-left .ms-content-left-ul{background-color:#fff;margin-top:1px;width:230px}.ms-content .ms-content-left .ms-content-left-ul a:hover{color:#fff}.ms-content .ms-content-left .ms-content-left-ul a:hover li{background-color:#54bcfe}.ms-content .ms-content-left .ms-content-left-ul a{color:#999999}.ms-content .ms-content-left .ms-content-left-ul li{height:40px;line-height:40px;font-size:14px;cursor:pointer;padding:0 20px}.ms-content .ms-content-left .ms-content-left-ul li .ms-content-left-li-more{float:right}.ms-content .ms-content-left .ms-content-left-ul .ms-content-left-li-first{color:#fff}.ms-content .ms-content-left .ms-content-left-ul .ms-content-left-li-first li{background-color:#54bcfe}.ms-content a:visited{color:#000000}.ms-content .ms-content-new-list{overflow:hidden;margin-top:20px}.ms-content .ms-content-right-position{font-size:14px;overflow:hidden;margin-bottom:20px}.ms-content .ms-content-right-position a:hover{color:#0099ff}.ms-content .ms-content-right-position span{padding:0 5px}.ms-content #ms-content-search{float:none;width:100%;margin-top:20px}.ms-content .ms-content-main-list{float:right;width:950px;min-height:400px}.ms-content .ms-content-main-list .ms-content-main-div{background-color:#fff;padding-bottom:30px}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul{margin:0 20px}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul a:link{color:#333;text-decoration:none}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul a:visited{color:#333;text-decoration:none}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul a:active{color:#333;text-decoration:none}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul a:hover{color:#0099ff;text-decoration:none}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul li{border-bottom:1px dotted #eee;padding:12px 0;overflow:hidden}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul .ms-content-main-li-span{padding-right:10px;float:left}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul .ms-content-main-li-title{float:left;color:#333;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;font-size:14px;width:500px}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul .ms-content-main-li-time{float:right;color:#999999;font-size:14px}.ms-content .ms-content-main-page{text-align:center;margin-top:30px;margin-bottom:50px}.ms-content .ms-content-main-page a{color:#999;font-size:14px}.ms-content .ms-content-main-page a:hover{background-color:#eee}.ms-content .ms-content-main-page .ms-content-main-page-first,.ms-content .ms-content-main-page .ms-content-main-page-last{border:1px solid #ddd;padding:10px 15px;margin-right:-5px}.ms-content .ms-content-main-page .ms-content-main-page-upper,.ms-content .ms-content-main-page .ms-content-main-page-next{border-top:1px solid #ddd;border-bottom:1px solid #ddd;padding:10px 15px;margin-right:-5px}.ms-content .ms-content-main-page .ms-content-main-page-upper{border-right:1px solid #ddd}.ms-content .ms-content-main-page .ms-content-main-page-first{border-top-left-radius:4px;border-bottom-left-radius:4px}.ms-content .ms-content-main-page .ms-content-main-page-last{border-top-right-radius:4px;border-bottom-right-radius:4px}.ms-content .ms-content-main-div .ms-content-main-div-prompt{border-bottom:1px solid #d0cfcf99 99;padding-top:20px;padding-left:20px;padding-bottom:10px;font-size:14px;color:#999999}.ms-content .ms-content-main-div .ms-content-main-div-prompt span{color:#0198ff}.ms-content .ms-content-main-div .ms-content-main-ul li{height:22px;line-height:22px}.ms-content .ms-content-main-div .ms-content-main-ul a{font-size:14px}.ms-content .ms-content-main-div .ms-content-main-ul .ms-content-main-li-title:hover{color:#0099ff}.ms-content .ms-content-main-div .ms-content-main-ul .ms-content-main-ul-result{color:#0198ff}.ms-content .ms-content-main-div .ms-content-main-div-nothing{font-size:14px;color:#999999;padding-top:20px;padding-left:20px;text-align:center}/*# sourceMappingURL=./news-list.css.map */

File diff suppressed because one or more lines are too long

View File

@ -1,39 +0,0 @@
<div class="ms-footer">
<div class="ms-footer-content">
<div class="ms-footer-left">
<div class="ms-footer-left-column">
<span class="ms-footer-left-column-about">
<a href='{ms:global.url/}/guanyuwomen53/index.html'>关于我们</a>
</span>|
<span class="ms-footer-left-column-course">
<a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#faz'>发展历程</a>
</span>|
<span class="ms-footer-left-column-contact">
<a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#lianx'>联系我们</a>
</span>
</div>
<span class="ms-footer-left-copyright">版权所有&copy;铭飞科技有限公司2012-2018保留一切权利</span>
</div>
<div class="ms-footer-right">
<img class='ms-footer-right-img-weixin' src="{ms:global.host/}/{ms:global.style/}/images/we-chat.png">
<a target="_blank" href='http://tieba.baidu.com/f?kw=%E9%93%AD%E9%A3%9E%E7%A7%91%E6%8A%80&fr=index&fp=0&ie=utf-8'><img class="ms-footer-right-baidu" src="{ms:global.host/}/{ms:global.style/}/images/baidu.png"></a>
<a target="_blank" href='http://weibo.com/killfen'><img src="{ms:global.host/}/{ms:global.style/}/images/micro-blog.png"></a>
<div class="ms-footer-right-weixin">
<p></p>
<img alt="" src="{ms:global.host/}/{ms:global.style/}/images/weixin.jpg">
</div>
</div>
</div>
</div>
<script>
/*导航下拉*/
$(function(){
$(".head-menu-list-li").hover(function(){
$(this).find(".head-menu-son-list").fadeToggle();
});
$('.ms-footer-right-img-weixin').hover(function(){
$('.ms-footer-right-weixin').toggle();
});
});
</script>

View File

@ -1,36 +0,0 @@
<title>{ms:global.name/}</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/plugins/iconfont/1.0.0/iconfont.css" />
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/base.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/index.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/advice.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/case-list.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/about.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/news-list.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/news-show.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/center.css">
<script src="{ms:global.host/}/plugins/jquery/1.9.1/jquery-1.9.1.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/slider.js"></script>
<script src="{ms:global.host/}/static/plugins/less/3.9.0/less.min.js"></script>
<!--vue-懒加载-表单验证-->
<script src="{ms:global.host/}/plugins/vue/2.6.9/vue.min.js"></script>
<script src="{ms:global.host/}/plugins/validator/10.8.0/validator.min.js"></script>
<!-- Element -->
<link rel="stylesheet" href="{ms:global.host/}/plugins/element-ui/2.8.2/index.css">
<script src="{ms:global.host/}/plugins/element-ui/2.8.2/index.js"></script>
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/animate.css">
<script src="{ms:global.host/}/static/plugins/axios/0.18.0/axios.min.js"></script>
<script src="{ms:global.host/}/static/plugins/ms/1.0.0/ms.js"></script>
<script src="{ms:global.host/}/static/plugins/ms/1.0.0/ms.http.js"></script>
<script src="{ms:global.host/}/static/plugins/ms/1.0.0/ms.util.js"></script>
<script src="{ms:global.host/}/api/ms.people.min.js"></script>
<script src="{ms:global.host/}/static/plugins/plupload/plupload.full.min.js"></script>
<script src="{ms:global.host/}/static/plugins/qs/6.6.0/qs.min.js"></script>
<script src="{ms:global.host/}/static/plugins/ms/1.0.0/ms.upload.js"></script>
<script>
window.http = ms.http;
ms.base = "{ms:global.host/}";
ms.login = '{ms:global.host/}';
</script>

View File

@ -1,146 +0,0 @@
<div class="ms-head">
<div class="head-menu">
<div class="head-men-left head-menu-flex-center">
<a href="{ms:global.host/}/html/1/index.html">
<img src="http://cdn.mingsoft.net/images/logo.png" />
</a>
<ul class="head-menu-list">
<li class="head-menu-list-li">走进铭飞
<ul class="head-menu-son-list">
<li>
<a target="_blank" href='{ms:global.url/}/guanyuwomen53/index.html'>关于我们</a>
</li>
<li>
<a target="_blank" href='{ms:global.url/}/xinwenzhongxin/index.html'>公司动态</a>
</li>
<li>
<a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#faz'>发展历程</a>
</li>
<li>
<a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#lianx'>加入我们</a>
</li>
<li>
<a target="_blank" href='{ms:global.url/}/lianxiwomen19/index.html'>联系我们</a>
</li>
</ul>
</li>
<li class="head-menu-list-li">
<a href='{ms:global.url/}/wangzhananli/index.html'>案例</a>
</li>
<li class="head-menu-list-li">
<a target="_blank" href='http://store.mingsoft.net/mstore/index.do'>插件&模板</a>
<!-- <ul class="head-menu-son-list">
<li><a href='http://mstore.mingsoft.net/mstoreShow.do'>模板</a></li>
<li><a href='http://mstore.mingsoft.net/mstoreShow.do'>插件</a></li>
</ul> -->
</li>
<li class="head-menu-list-li">
<a target="_blank" href='{ms:global.url/}/lianxiwomen19/zaixianliuyan/index.html'>在线留言</a>
</li>
<li class="head-menu-list-li">技术支持
<ul class="head-menu-son-list">
<li>
<a target="_blank" href='http://bbs.mingsoft.net/mbbs/main.do'>开源社区</a>
</li>
<li>
<a target="_blank" href='https://gitee.com/mingSoft/MCMS'>源码下载</a>
</li>
<li>
<a target="_blank" href='http://doc.ms.mingsoft.net/plugs-cms/'>使用手册</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="head-men-right head-menu-flex-center">
<div class="head-menu-flex-center head-menu-right-search">
<form id="searchDataForm" action="{ms:global.host/}/mcms/search.do" method="post">
<input type="text" class='ms-search-input' name="content_title" placeholder="请输入关键字">
<!-- <i class="iconfont ms-search-click">&#xe85e;</i> -->
<input type="submit" value="" class="ms-search-click">
</form>
</div>
<div class="head-menu-right-content" id="ms-login-vue">
<span v-show="!isLogin" style="display: none;">
<span>
<a href='{ms:global.host/}/mdiyPage/login.do'>登录</a>
</span>|<span><a href='{ms:global.host/}/mdiyPage/register.do'>注册</a></span>
</span>
<div class="topbar-info J_userInfo loginSuccess hide-default" v-show="isLogin" style="display: none;">
<a class="user-name" href="{ms:global.host/}/people/center.do">
<img :src="'{ms:global.host/}/'+peopleInfo.puIcon" class="loginImg user_icon" onerror="this.src='http://cdn.mingsoft.net/global/images/msheader.png'">
<b class="userName ms-userName" v-text="peopleInfo.puNickname"></b>
</a>
<a href="javascript:;" class="quitLogin" @click="quitLogin">退出</a>
</div>
</div>
</div>
</div>
</div>
<script>
var headVue = new Vue({
el: "#ms-login-vue",
data: {
isLogin: "", //登录状态
peopleInfo: "", //个人信息
imgUrl:"",
},
mounted: function() {
//获取个人信息
var target = this;
$.ajax({
type: "POST",
url: "{ms:global.host/}/checkLoginStatus.do",
success: function(msg) {
target.isLogin = msg.result; //判断用户是否登录如登录则target.isLogin===true
if(msg.result) {
$.ajax({
type: "GET",
url: "{ms:global.host/}/people/user/info.do",
success: function(msg) {
target.peopleInfo = msg; //target.peopleInfo为当前登录用户的基本信息
}
})
}
}
})
},
methods: {
//退出登录
quitLogin: function() {
var target = this;
$.ajax({
type: "GET",
url: "{ms:global.host/}/people/quit.do",
success: function(msg) {
if(msg.result) {
$("body").append("<form id='msHeadForm' action=''></form>");
$("#msHeadForm").attr("action", "{ms:global.host/}").submit();
}
}
})
},
},
})
/* $(function(){
var r=location.href;
if(r.match("53")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(0).addClass("head-active");
}else if(r.match("141")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(0).addClass("head-active");
}else if(r.match("59")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(0).addClass("head-active");
}else if(r.match("155")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(1).addClass("head-active");
}else if(r.match("142")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(3).addClass("head-active");
}
}) */
</script>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 520 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 200 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 215 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 498 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 924 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 236 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 139 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 382 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 393 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 397 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 316 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 675 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 758 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 379 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 262 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 619 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 247 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Some files were not shown because too many files have changed in this diff Show More