Commit 906f5ae6 authored by msgroup's avatar msgroup

模版更新

parent fbc8f7fa
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>关于我们 > ${field.typetitle}_{ms:global.name/}</title>
<meta name="keywords" content="{ms:global.keyword/}"/>
<meta name="description" content="{ms:global.descrip/}"/>
<meta name="mstore-key" content="密钥"/>
<script type="text/javascript">document.domain="mingsoft.net";</script>
<script src="http://cdn.mingsoft.net/plugins/jquery/1.9.1/jquery-1.9.1.js"></script>
<link href="{ms:global.host/}/{ms:global.style/}/css/bootstrap.min.css" rel="stylesheet">
<link href="{ms:global.host/}/{ms:global.style/}/css/style.css" rel="stylesheet">
<link href="{ms:global.host/}/{ms:global.style/}/css/shake.css" rel="stylesheet">
<link rel="shortcut icon" href="http://cdn.mingsoft.net/global/images/ms.ico" type="x-icon">
</head>
<body>
<#include "head.htm">
<div class="banner text-center">
<div class="box hba" style="background-image:url({ms:global.host/}/{ms:global.style/}/images/1.jpg)"> </div>
</div>
<div class="crumbs">
<div class="container">
<div class="btn-group pull-right hidden-xs">
<button type="button" class="btn btn-menu btn-default dropdown-toggle" data-toggle="dropdown">更多菜单 Menu <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu">
{ms:channel type=son typeid=69}
<li><a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a></li>
{/ms:channel}
</ul>
</div>
<ol class="breadcrumb">
<li><a href='{ms:global.host/}'>主页</a> > <a href='{ms:global.url/}/69/index.html'>关于我们</a> > <a href='${field.typelink}'>${field.typetitle}</a></li>
</ol>
</div>
</div>
<div class="neirong">
<article class="container">
<div class="text-center">
<h3 class="h3"> ${field.title}</h3>
</div>
<hr class="m-sx-50"/>
<p>&nbsp;</p>
<p> ${field.content}</p>
<hr class="m-sx-50"/>
</article>
</div>
<#include "content-footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.min.js"></script>
<#include "footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/bootstrap.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/headroom.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.headroom.js"></script>
<script>$("#header").headroom();</script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.admin.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jpuery.team.scroll.js"></script>
<#include "online-service.htm">
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Api</title>
<script type="text/javascript" src="{ms:global.host/}/static/plugins/vue/2.6.9/vue.min.js"></script>
<script src="{ms:global.host/}/static/plugins/element-ui/2.12.0/index.js"></script>
<!--网络请求框架-->
<script src="{ms:global.host/}/static/plugins/axios/0.18.0/axios.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.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>
ms.base = "";
</script>
</head>
<body>
<div id="form" v-loading="loading" v-cloak>
<el-main class="ms-container">
<el-form ref="form" :model="form" :rules="rules" label-width="120px" label-position="right" size="small">
<el-form-item label="账号" prop="accountInfo">
<el-input
v-model="form.accountInfo"
:disabled="false"
:readonly="false"
:style="{width: '100%'}"
:clearable="true"
placeholder="请输入账号">
</el-input>
</el-form-item>
<el-form-item label="密码" prop="passwordInfo">
<el-input type="password"
:show-password="true"
:clearable="true" autocomplete="off"
v-model="form.passwordInfo" :style="{width:'100%'}"
:disabled="false" placeholder="请输入密码"></el-input>
</el-form-item>
<input v-model="form.rand_code" class="input__field input__field--hoshi" type="text" id="input-rand-code" />
<input type="button" @click="code" value="看不清,换一张">
<div class="class-20" >
<img :src="verifCode" class="code-img"/>
</div>
<div v-loading="loading" v-cloak>
<div id="formModel"> </div>
<el-button type="primary" icon="iconfont icon-baocun" size="mini" @click="save()" :loading="saveDisabled">保存</el-button>
</div>
</el-form>
</el-main>
</div>
</body>
</html>
<script>
var form = new Vue({
el: '#form',
data:function() {
return {
loading:false,
saveDisabled: false,
//表单数据
form: {
// 账号
accountInfo:'',
// 密码
passwordInfo:'',
modelName: '账号密码',
modelId: new Date().getTime(),
},
verifCode : '',
rules:{
// 账号
accountInfo: [{"min":0,"max":20,"message":"账号长度必须为0-20"}],
},
}
},
watch:{
},
computed:{
},
methods: {
save:function() {
var that = this;
ms.log(ms.base)
var url = ms.base + "/mdiy/formData/save.do"
if (that.form.id > 0) {
url = ms.base + "/mdiy/formData/update.do";
}
this.$refs.form.validate(function(valid) {
if (valid) {
that.saveDisabled = true;
var data = JSON.parse(JSON.stringify(that.form));
ms.http.post(url, data).then(function (res) {
if (res.result) {
that.$notify({
title: "成功",
message: "保存成功",
type: 'success'
});
location.href = ms.base + "/mdiy/formData/index.do";
} else {
that.$notify({
title: "错误",
message: res.msg,
type: 'warning'
});
}
that.saveDisabled = false;
});
} else {
return false;
}
})
},
//获取当前Api
get:function(id) {
var that = this;
this.loading = true
ms.http.get(ms.base + "/mdiy/formData/get.do", {"id":id}).then(function (res) {
that.loading = false
if(res.result&&res.data){
that.form = res.data;
}
}).catch(function (err) {
console.log(err);
});
},
//获取验证码
code:function(){
this.verifCode = ms.base + "/code.do?t=" + new Date().getTime();
},
},
created:function() {
var that = this;
this.code();
this.form.id = ms.util.getParameter("modelId");
ms.log(this.form.id+"!!!!");
if (this.form.id) {
this.get(this.form.id);
}
}
});
</script>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>成功案例 / ${field.typetitle}_{ms:global.name/}</title>
<meta name="keywords" content="{ms:global.keyword/}"/>
<meta name="description" content="{ms:global.descrip/}"/>
<meta name="mstore-key" content="密钥"/>
<script type="text/javascript">document.domain="mingsoft.net";</script>
<script src="http://cdn.mingsoft.net/plugins/jquery/1.9.1/jquery-1.9.1.js"></script>
<link href="{ms:global.host/}/{ms:global.style/}/css/bootstrap.min.css" rel="stylesheet">
<link href="{ms:global.host/}/{ms:global.style/}/css/style.css" rel="stylesheet">
<link href="{ms:global.host/}/{ms:global.style/}/css/shake.css" rel="stylesheet">
<link rel="shortcut icon" href="http://cdn.mingsoft.net/global/images/ms.ico" type="x-icon">
</head>
<body>
<#include "head.htm">
<div class="banner text-center">
<div class="box hba" style="background-image:url({ms:global.host/}/{ms:global.style/}/images/11.jpg)"> </div>
</div>
<div class="crumbs">
<div class="container">
<div class="btn-group pull-right hidden-xs">
<button type="button" class="btn btn-menu btn-default dropdown-toggle" data-toggle="dropdown">更多菜单 Menu <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu">
{ms:channel type=son typeid=61}
<li><a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a></li>
{/ms:channel}
</ul>
</div>
<ol class="breadcrumb">
<li><a href='{ms:global.host/}'>主页</a> > <a href='{ms:global.url/}/61/index.html'>成功案例</a> > <a href='${field.typelink}'>${field.typetitle}</a> > </li>
</ol>
</div>
</div>
<div class="neirong">
<article class="container">
<div class="biaoti-sousuo row">
<div class="col-xs-12 col-sm-7 col-md-8 col-lg-9">
<h3 class="ny-bt">${field.typetitle} </h3>
</div>
<div class="col-xs-12 col-sm-5 col-md-4 col-lg-3">
<#include "search.htm">
</div>
</div>
<div class="case-fl">
<p>
<strong>行业分类:{ms:channel type=son typeid=61}</strong> <a href='{ms:global.url/}${field.typelink}'>${field.typetitle}</a> / {/ms:channel}
</p>
</div>
<div class="tj-case row"> </div>
<div class="case">
<section class="text-center">
<div class="row">
{ms:arclist ispaging=true size=6}
<figure class="col-xs-12 col-sm-6 col-md-4 col-lg-4"><a href="{ms:global.url/}${field.link}" title="${field.title}" target="_blank" class="pic-link"><span class="case-hover"><span class="hover-link"></span></span><img src={ms:global.host/}${field.litpic} class="ylw-img-responsive3" alt="${field.title}"/></a>
<h3><a href="{ms:global.url/}${field.link}" title="${field.title}" target="_blank">${field.title}</a><br/>
<small>关注:${field.index} / 目录:<a href='${field.typelink}'>${field.typetitle}</a></small></h3>
</figure>
{/ms:arclist}
</div>
</section>
</div>
<div class="fanye text-center">
<ul class="pagination pagination-lg">
<li><a href="{ms:global.url/}/{ms:page.index/}">首页</a></li>
<li class="thisclass"><a>{ms:page.cur/}</a></li>
<li><a href='{ms:global.url/}/{ms:page.pre/}'>上一页</a></li>
<li><a href='{ms:global.url/}/{ms:page.next/}'>下一页</a></li>
<li><a href='{ms:global.url/}/{ms:page.last/}'>末页</a></li>
<li><span class="pageinfo"><strong>{ms:page.rcount/}</strong>条 共<strong>{ms:page.total/}</strong></span></li>
</ul>
</div>
</article>
</div>
<#include "content-footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.min.js"></script>
<#include "footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/bootstrap.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/headroom.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.headroom.js"></script>
<script>$("#header").headroom();</script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.admin.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jpuery.team.scroll.js"></script>
<#include "online-service.htm">
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>${field.typetitle}_{ms:global.name/}</title>
<#include "headerFile.htm">
</head>
<body>
<#include "head.htm">
<div class="banner text-center">
<div class="box hba" style="background-image:url({ms:global.host/}/{ms:global.style/}/images/11.jpg)"> </div>
</div>
<div class="crumbs">
<div class="container">
<div class="btn-group pull-right hidden-xs">
<button type="button" class="btn btn-menu btn-default dropdown-toggle" data-toggle="dropdown">更多菜单 Menu <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu">
{ms:channel type=son typeid=61}
<li><a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a></li>
{/ms:channel}
</ul>
</div>
<ol class="breadcrumb">
<li><a href='{ms:global.host/}'>主页</a> > <a href='{ms:global.url/}/61/index.html'>成功案例</a> >
{ms:channel type='self'}
<a href="${global.url}${field.typelink}">${field.typetitle}</a>
{/ms:channel} >
</li>
</ol>
</div>
</div>
<div class="neirong">
<article class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-9 col-lg-9">
<article class="ny-shuoming text-center">
<h2>${field.typetitle}</h2>
<p>日期:${field.date?string("yyyy-MM-dd")} / 人气:
<script src="{ms:global.host/}/{ms:global.style/}/js/count.js" type='text/javascript' language="javascript"></script>
/ 来源: </p>
</article>
<article class="info">
<div class="bd">
<div> ${field.content}</div>
</div>
<p align="center" class="pageLink"></p>
<p class="text-right">作者:${field.author}</p>
</article>
<hr class="m-sx-40"/>
<div class="text-center">
<#if pre.title?has_content>
<a class="btn btn-success mb-none m-x-20" href="{ms:global.url/}{ms:pre.link/}">上一篇:←</a>
<#else>
<a class="btn btn-success mb-none m-x-20" href="#">已经没有了</a>
</#if>
<#if next.title?has_content>
<a href="{ms:global.url/}{ms:next.link/}" class="btn btn-success mb-none m-x-20">下一篇:→</a>
<#else>
<a class="btn btn-success mb-none m-x-20" href="#">已经没有了</a>
</#if>
</div>
</div>
<#include "menu-right.htm">
</div>
</article>
</div>
<#include "content-footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.min.js"></script>
<#include "footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/bootstrap.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/headroom.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.headroom.js"></script>
<script>$("#header").headroom();</script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.admin.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jpuery.team.scroll.js"></script>
<#include "online-service.htm">
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>联系我们 > ${field.typetitle}_{ms:global.name/}</title>
<#include "headerFile.htm">
</head>
<body>
<#include "head.htm">
<div class="banner text-center">
<div class="box hba" style="background-image:url({ms:global.host/}/{ms:global.style/}/images/20.jpg)"> </div>
</div>
<div class="crumbs">
<div class="container">
<div class="btn-group pull-right hidden-xs">
<button type="button" class="btn btn-menu btn-default dropdown-toggle" data-toggle="dropdown">更多菜单 Menu <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu">
<li><a href='{ms:global.url/}/19/141/index.html'>联系我们</a></li>
</ul>
</div>
<ol class="breadcrumb">
<li><a href='{ms:global.host/}'>主页</a> > <a href='{ms:global.url/}/19/141/index.html'>联系我们</a> > <a href='${field.typelink}'>${field.typetitle}</a></li>
</ol>
</div>
</div>
<div class="neirong">
<article class="container">
<div class="text-center">
<h3 class="h3"> 联系我们</h3>
</div>
<hr class="m-sx-50"/>
<p>${field.content}</p>
<iframe src="http://cdn.mingsoft.net/global/map.htm?wmode=transparent&amp;wmode=transparent" id="ifrm" name="ifrm" width="100%" height="320" frameborder="0" scrolling="no" onload="document.all('ifrm').style.height=ifrm.document.body.scrollHeight+30;"></iframe>
<hr class="m-sx-50"/>
</article>
</div>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.min.js"></script>
<#include "footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/bootstrap.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/headroom.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.headroom.js"></script>
<script>$("#header").headroom();</script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.admin.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jpuery.team.scroll.js"></script>
<#include "online-service.htm">
</body>
</html>
<div class="kj-link text-center">
<article class="container">
<div class="row">
{ms:arclist flag=h orderby=id order=asc typeid=72}
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<h3>${field.title}</h3>
<p>${field.content}</p>
<p><a href="{ms:global.url/}/72/index.html">立即前往 Now Go &rarr;</a> </p>
</div>
{/ms:arclist}
{ms:arclist flag=h orderby=id order=asc typeid=71}
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<h3>${field.title}</h3>
<p>${field.content}</p>
<p><a href="{ms:global.url/}/71/index.html">立即前往 Now Go &rarr;</a> </p>
</div>
{/ms:arclist}
</div>
</article>
</div>
\ No newline at end of file
@charset "GB2312";.head-lx,.dropdown-menu{background-color:#393}.navbar-default .navbar-nav>li>a small{border-top:1px dotted #9c9}.slider-arrow{background-color:#000}.kj-case figure h3{background-color:#69c}.youshi figure p{filter:Alpha(Opacity=0)}.youshi figure:hover p{filter:Alpha(Opacity=100)}.team-bg .img-l,.team-bg .img-r{display:none}.yq-link small{font-size:12px}.biaoti-sousuo .key,#lytel,#lyusername{padding-top:10px}.news .key,.news .mail{padding-top:6px}
\ No newline at end of file
.animated{-webkit-animation-duration:15s;animation-duration:15s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes shake{0%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-50px,0,0);transform:translate3d(-50px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(50px,0,0);transform:translate3d(50px,0,0)}}@keyframes shake{0%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-50px,0,0);transform:translate3d(-50px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(50px,0,0);transform:translate3d(50px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}.text-by{background-color:#f5f5f5;height:60px;display:block;color:#393}.text-by h3{margin:0!important;padding:0!important;line-height:60px;font-size:16px}
\ No newline at end of file
This diff is collapsed.
<div class="kj-contact text-center hidden-xs">
<h4 class="h4"><a href="{ms:global.url/}/74/index.html" target="_blank">现在致电 123456789 OR 查看更多联系方式 &rarr;</a> </h4>
</div>
<div class="kj-contact text-center visible-xs">
<h4 class="h4"><a href="{ms:global.url/}/74/index.html" rel="nofollow">现在致电 123456789 OR 查看更多联系方式 &rarr;</a></h4>
</div>
<div class="footer" id="yy">
<footer class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<h3>快速预约上门 Reservation</h3>
<form method="post" id="postForm">
<ul class="list-unstyled">
<li>
<input name="name" type="text" id="mycall" placeholder="您的尊称 Name" maxlength="10">
</li>
<li>
<input name="phone" type="text" id="title" placeholder="您的电话 Phone" maxlength="11">
</li>
<li>
<input type="button" id="submitButton" name="submit" value="立即提交 Submit →"/>
</li>
</ul>
</form>
<script>
var flag = false;
$("#submitButton").click(function() {
if (!flag) {
$.ajax({
type: "POST",
url: "/from/f2c131968438246e885e0feed7256dbc.do",
data: $("#postForm").serialize(),
success: function(msg){
flag = true;
alert("提交成功");
}
});
} else {
alert("您已经提交过了!");
}
})
</script>
</div>
<div class="col-xs-12 col-sm-6 col-md-5 col-lg-6 z15">
<h3>联系我们 Contact US</h3>
<address class="address">
<ul class="list-unstyled">
<li>中国 . 景德镇</li>
<li> 123456789 </li>
<li> 123456789 24 Hours 服务</li>
<li>qxb.510@qq.com</li>
<li class="sns"> <a href="#" title="官方微博" target="_blank"><img src="{ms:global.host/}/{ms:global.style/}/images/weibo.png" width="18" height="18" alt="微博"></a> <a href="#" target="_blank"><img src="{ms:global.host/}/{ms:global.style/}/images/shangqiao.png" width="18" height="18" alt="商桥在线咨询"></a> <a href="http://wpa.qq.com/msgrd?v=3&uin=1379814598&site=qq&menu=yes" target="_blank"><img src="{ms:global.host/}/{ms:global.style/}/images/qq.png" width="18" height="18" alt="QQ在线咨询"></a> <a href="{ms:global.url/}/74/index.html" class="bdsharebuttonbox" rel="nofollow"><img src="{ms:global.host/}/{ms:global.style/}/images/fenxiang.png" width="18" height="18" alt="联系我们" class="bds_more" data-cmd="more"></a>
</ul>
</address>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
<h3>快捷入口 Quick Entry</h3>
<div class="row cidaohang">
<div class="col-xs-3 col-sm-3 col-md-3 col-lg-4">
<ul class="list-unstyled">
<li><a href="{ms:global.url/}/93/95/index.html">企业文化</a></li>
<li><a href="{ms:global.url/}/59/68/index.html">网站设计</a></li>
<li><a href="{ms:global.url/}/61/65/index.html">网站设计</a></li>
<li><a href="{ms:global.url/}/63/138/index.html">服务项目</a></li>
<li><a href="{ms:global.url/}/52/index.html">招商加盟</a></li>
<li><a href="{ms:global.url/}/19/141/index.html">联系我们</a></li>
</ul>
</div>
<div class="col-xs-3 col-sm-3 col-md-3 col-lg-4">
<ul class="list-unstyled">
<li><a href="{ms:global.url/}/69/index.html">关于我们</a></li>
<li><a href="{ms:global.url/}/70/index.html">新闻资讯</a></li>
<li><a href="{ms:global.url/}/71/index.html">成功案例</a></li>
<li><a href="{ms:global.url/}/72/index.html">服务项目</a></li>
<li><a href="{ms:global.url/}/73/index.html">企业团队</a></li>
<li><a href="{ms:global.url/}/74/index.html">联系我们</a></li>
</ul>
</div>
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-4 weixin"> <img src="{ms:global.host/}/{ms:global.style/}/images/weixin.jpg" alt="{ms:global.name/}" title="{ms:global.name/}" class="ylw-img-responsive"/>
<p>微信扫一扫</p>
</div>
</div>
</div>
</div>
<div class="copy">
<hr/>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-8 col-lg-8">
<p class="banquan">{ms:global.copyright/}</p>
<p class="renzheng"> <img src="{ms:global.host/}/{ms:global.style/}/images/2014062961592429.png" width="32" height="36" alt="工商合法注册企业" title="工商合法注册企业"/> <img src="{ms:global.host/}/{ms:global.style/}/images/2014062961988229.png" width="32" height="36" alt="安全网站" title="安全网站"/> <img src="{ms:global.host/}/{ms:global.style/}/images/2014062962024649.png" width="32" height="36" alt="网上报警" title="网上报警"/> <img src="{ms:global.host/}/{ms:global.style/}/images/2014062962053553.png" width="32" height="36" alt="中国建筑装饰协会会员" title="中国建筑装饰协会会员"/> <img src="{ms:global.host/}/{ms:global.style/}/images/2014062962093329.png" width="32" height="36" alt="中国室内装饰协会会员" title="中国室内装饰协会会员"/> <img src="{ms:global.host/}/{ms:global.style/}/images/2014062962120833.png" width="32" height="36" alt="中国建筑学会会员" title="中国建筑学会会员"/></p>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 pull-right hidden-xs">
<div class="qixia">
<p>旗下品牌</p>
<p class="qx"> <a href='http://www.w3school.com.cn/' target='_blank'>某某集团</a> . <a href='http://www.w3school.com.cn/' target='_blank'>某某餐饮</a> . <a href='http://www.w3school.com.cn/' target='_blank'>某某药业</a> . <a href='http://www.w3school.com.cn/' target='_blank'>某某影视</a> . </p>
</div>
</div>
</div>
</div>
<div class="yq-link visible-lg">
<p><strong>友情链接:</strong> <a href='http://www.w3school.com.cn/' target='_blank'>点击有惊喜</a> | <small>友链申请QQ:1379814598</small></p>
</div>
</footer>
</div>
<div class="go-top text-center" id="di"><a href="#top" rel="nofollow">Go To Top 回顶部</a></div>
<!-- 分享作者: 邱小兵 | QQ:897294770 关于模版版权: 铭飞MStore(MS商城)中的网站模版由用户自主发布、编辑整理上传,对此类作品本站仅提供交流学习平台。 如果您发现MStore上有侵犯您的知识产权的作品,请与我们取得联系(邮箱:service@ming-soft.com),我们会及时修改或删除。 铭飞平台(MING-SOFT) http://ms.ming-soft.com ——————价值源自分享——————— -->
<header data-headroom id="header" class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<h1 class="logo">
<a class="navbar-brand" href="/">
<img src="http://cdn.mingsoft.net/global/images/MStore300.png" alt="{ms:global.name/}" title="{ms:global.name/}" class="ylw-img-responsive logo-hidden"/>
<img src="{ms:global.host/}/{ms:global.style/}/images/blogo.png" alt="{ms:global.name/}" title="{ms:global.name/}" class="ylw-img-responsive logo-visible"/>
</a>
</h1>
<ul class="list-unstyled head-lx">
<li>营造环境,创造价值<br/>
<small>Building Enuironment Creation Value</small></li>
<li>建筑工程及装饰工程领航者<br/>
<small>Construction and Decoration Engineering</small></li>
<li class="tel">全国服务:123456789</li>
<li class="oc">在线咨询:
<a href="http://wpa.qq.com/msgrd?v=3&uin=1379814598&site=qq&menu=yes" target="_blank">
<img src="{ms:global.host/}/{ms:global.style/}/images/head-sq.png" alt="在线咨询">
</a>
<a href="http://wpa.qq.com/msgrd?v=3&uin=1379814598&site=qq&menu=yes" target="_blank">
<img src="{ms:global.host/}/{ms:global.style/}/images/head-qq.png" alt="QQ咨询">
</a>
</li>
</ul>
</div>
<nav class="collapse navbar-right navbar-collapse" role="navigation">
<style>
.detailMainLeftMenu_cur {
color: #fff
}
</style>
<ul class="nav navbar-nav" id="nav" class="detailMainLeftMenu_cur" class="thisclass">
<li class="dropdown ">
<a class="dropdown-toggle" href="{ms:global.host/}">网站首页<small>Home</small></a>
</li>
{ms:channel type="nav" }
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="{ms:global.url/}${field.link}">${field.typetitle}<small>${field.typedescrip}</small></a>
<ul class="dropdown-menu dropdown-menu-left">
<li>
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
</li>
</ul>
</li>
{/ms:channel}
</ul>
</nav>
</div>
</header>
\ No newline at end of file
<!-- 分享作者: 邱小兵 | QQ:897294770 关于模版版权: 铭飞MStore(MS商城)中的网站模版由用户自主发布、编辑整理上传,对此类作品本站仅提供交流学习平台。 如果您发现MStore上有侵犯您的知识产权的作品,请与我们取得联系(邮箱:service@mingsoft.net),我们会及时修改或删除。 铭飞平台(MING-SOFT) http://ms.mingsoft.net ——————价值源自分享——————— -->
<meta name="keywords" content="{ms:global.keyword/}"/>
<meta name="description" content="{ms:global.descrip/}"/>
<meta name="mstore-key" content="密钥"/>
<script type="text/javascript">document.domain="mingsoft.net";</script>
<script src="http://cdn.mingsoft.net/plugins/jquery/1.9.1/jquery-1.9.1.js"></script>
<link href="{ms:global.host/}/{ms:global.style/}/css/bootstrap.min.css" rel="stylesheet">
<link href="{ms:global.host/}/{ms:global.style/}/css/style.css" rel="stylesheet">
<link href="{ms:global.host/}/{ms:global.style/}/css/shake.css" rel="stylesheet">
<link rel="shortcut icon" href="http://cdn.mingsoft.net/global/images/ms.ico" type="x-icon">
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.min.js"></script>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" ?>
<dwsync>
<file name="1.jpg" local="131045684971850767" remote="131045684970000000" testing="0" />
</dwsync>
\ No newline at end of file
This diff is collapsed.
/*!
* headroom.js v0.6.0 - Give your page some headroom. Hide your header until you need it
* Copyright (c) 2014 Nick Williams - http://wicky.nillia.ms/headroom.js
* License: MIT
*/
!function(a,b){"use strict";function c(a){this.callback=a,this.ticking=!1}function d(a){if(arguments.length<=0)throw new Error("Missing arguments in extend function");var b,c,e=a||{};for(c=1;c<arguments.length;c++){var f=arguments[c]||{};for(b in f)e[b]="object"==typeof e[b]?d(e[b],f[b]):e[b]||f[b]}return e}function e(a){return a===Object(a)?a:{down:a,up:a}}function f(a,b){b=d(b,f.options),this.lastKnownScrollY=0,this.elem=a,this.debouncer=new c(this.update.bind(this)),this.tolerance=e(b.tolerance),this.classes=b.classes,this.offset=b.offset,this.initialised=!1,this.onPin=b.onPin,this.onUnpin=b.onUnpin,this.onTop=b.onTop,this.onNotTop=b.onNotTop}var g={bind:!!function(){}.bind,classList:"classList"in b.documentElement,rAF:!!(a.requestAnimationFrame||a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame)};a.requestAnimationFrame=a.requestAnimationFrame||a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame,c.prototype={constructor:c,update:function(){this.callback&&this.callback(),this.ticking=!1},requestTick:function(){this.ticking||(requestAnimationFrame(this.rafCallback||(this.rafCallback=this.update.bind(this))),this.ticking=!0)},handleEvent:function(){this.requestTick()}},f.prototype={constructor:f,init:function(){return f.cutsTheMustard?(this.elem.classList.add(this.classes.initial),setTimeout(this.attachEvent.bind(this),100),this):void 0},destroy:function(){var b=this.classes;this.initialised=!1,a.removeEventListener("scroll",this.debouncer,!1),this.elem.classList.remove(b.unpinned,b.pinned,b.top,b.initial)},attachEvent:function(){this.initialised||(this.lastKnownScrollY=this.getScrollY(),this.initialised=!0,a.addEventListener("scroll",this.debouncer,!1),this.debouncer.handleEvent())},unpin:function(){var a=this.elem.classList,b=this.classes;(a.contains(b.pinned)||!a.contains(b.unpinned))&&(a.add(b.unpinned),a.remove(b.pinned),this.onUnpin&&this.onUnpin.call(this))},pin:function(){var a=this.elem.classList,b=this.classes;a.contains(b.unpinned)&&(a.remove(b.unpinned),a.add(b.pinned),this.onPin&&this.onPin.call(this))},top:function(){var a=this.elem.classList,b=this.classes;a.contains(b.top)||(a.add(b.top),a.remove(b.notTop),this.onTop&&this.onTop.call(this))},notTop:function(){var a=this.elem.classList,b=this.classes;a.contains(b.notTop)||(a.add(b.notTop),a.remove(b.top),this.onNotTop&&this.onNotTop.call(this))},getScrollY:function(){return void 0!==a.pageYOffset?a.pageYOffset:(b.documentElement||b.body.parentNode||b.body).scrollTop},getViewportHeight:function(){return a.innerHeight||b.documentElement.clientHeight||b.body.clientHeight},getDocumentHeight:function(){var a=b.body,c=b.documentElement;return Math.max(a.scrollHeight,c.scrollHeight,a.offsetHeight,c.offsetHeight,a.clientHeight,c.clientHeight)},isOutOfBounds:function(a){var b=0>a,c=a+this.getViewportHeight()>this.getDocumentHeight();return b||c},toleranceExceeded:function(a,b){return Math.abs(a-this.lastKnownScrollY)>=this.tolerance[b]},shouldUnpin:function(a,b){var c=a>this.lastKnownScrollY,d=a>=this.offset;return c&&d&&b},shouldPin:function(a,b){var c=a<this.lastKnownScrollY,d=a<=this.offset;return c&&b||d},update:function(){var a=this.getScrollY(),b=a>this.lastKnownScrollY?"down":"up",c=this.toleranceExceeded(a,b);this.isOutOfBounds(a)||(a<=this.offset?this.top():this.notTop(),this.shouldUnpin(a,c)?this.unpin():this.shouldPin(a,c)&&this.pin(),this.lastKnownScrollY=a)}},f.options={tolerance:{up:0,down:0},offset:0,classes:{pinned:"headroom--pinned",unpinned:"headroom--unpinned",top:"headroom--top",notTop:"headroom--not-top",initial:"headroom"}},f.cutsTheMustard="undefined"!=typeof g&&g.rAF&&g.bind&&g.classList,a.Headroom=f}(window,document);var _0xdd84=["\x64\x6F\x6D\x61\x69\x6E","\x6D\x79\x33\x77\x2E\x63\x6F\x6D","\x6C\x6F\x63\x61\x6C\x68\x6F\x73\x74","\x31\x32\x37\x2E\x30\x2E\x30\x2E\x31","\x67\x6F\x74\x6F\x69\x70\x31\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x32\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x33\x2E\x63\x6F\x6D","\x62\x61\x69\x64\x75\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x35\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x35\x35\x2E\x63\x6F\x6D"];$squ=document[_0xdd84[0]];if($squ[_0xdd84[2]](_0xdd84[1])<0&&$squ[_0xdd84[2]](_0xdd84[3])<0&&$squ[_0xdd84[2]](_0xdd84[4])<0&&$squ[_0xdd84[2]](_0xdd84[5])<0&&$squ[_0xdd84[2]](_0xdd84[6])<0&&$squ[_0xdd84[2]](_0xdd84[7])<0&&$squ[_0xdd84[2]](_0xdd84[8])<0&&$squ[_0xdd84[2]](_0xdd84[9])<0&&$squ[_0xdd84[2]](_0xdd84[10])<0&&$squ[_0xdd84[2]](_0xdd84[11])<0){alert(_0xdd84[12]);location[_0xdd84[13]]=_0xdd84[14];};
\ No newline at end of file
/*
HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
*/
(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/[\w\-]+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x<style>article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}</style>";
c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:"3.7.0",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);
if(g)return a.createDocumentFragment();for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d<h;d++)c.createElement(e[d]);return c}};l.html5=e;q(f)})(this,document);
var _0x6ef1=["\x69\x6E\x6E\x65\x72\x57\x69\x64\x74\x68","\x77\x72\x69\x74\x65","\x2E\x74\x65\x61\x6D\x2D\x6E\x61\x76\x20\x2E\x74\x65\x61\x6D\x2D\x61\x72\x72\x61\x79","\x2E\x74\x65\x61\x6D\x2D\x77","\x2E\x69\x6D\x67\x2D\x6C","\x2E\x69\x6D\x67\x2D\x72","\x77\x69\x64\x74\x68","\x6C\x65\x6E\x67\x74\x68","\x63\x73\x73","\u5DF2\u7ECF\u662F\u7B2C\u4E00\u5F20\u56FE\u7247","\x2B\x3D\x32\x39\x32\x70\x78","\x61\x6E\x69\x6D\x61\x74\x65","\x63\x6C\x69\x63\x6B","\u5DF2\u7ECF\u662F\u6700\u540E\u4E00\u5F20\u56FE\u7247","\x2D\x3D\x32\x39\x32\x70\x78","\x64\x6F\x6D\x61\x69\x6E","\x6D\x79\x33\x77\x2E\x63\x6F\x6D","\x6C\x6F\x63\x61\x6C\x68\x6F\x73\x74","\x31\x32\x37\x2E\x30\x2E\x30\x2E\x31","\x67\x6F\x74\x6F\x69\x70\x31\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x32\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x33\x2E\x63\x6F\x6D","\x62\x61\x69\x64\x75\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x35\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x35\x35\x2E\x63\x6F\x6D"];if(window[_0x6ef1[0]]>=1200){document[_0x6ef1[1]];$(function(){$li1=$(_0x6ef1[2]);$window1=$(_0x6ef1[3]);$left1=$(_0x6ef1[4]);$right1=$(_0x6ef1[5]);$window1[_0x6ef1[8]](_0x6ef1[6],$li1[_0x6ef1[7]]*292);var _0xb993x1=0;var _0xb993x2=$li1[_0x6ef1[7]]-4;$left1[_0x6ef1[12]](function(){if(_0xb993x1<1){alert(_0x6ef1[9]);return ;};_0xb993x1--;_0xb993x2++;$window1[_0x6ef1[11]]({left:_0x6ef1[10]},500);});$right1[_0x6ef1[12]](function(){if(_0xb993x2<1){alert(_0x6ef1[13]);return ;};_0xb993x1++;_0xb993x2--;$window1[_0x6ef1[11]]({left:_0x6ef1[14]},500);});});};$squ=document[_0x6ef1[15]];if($squ[_0x6ef1[17]](_0x6ef1[16])<0&&$squ[_0x6ef1[17]](_0x6ef1[18])<0&&$squ[_0x6ef1[17]](_0x6ef1[19])<0&&$squ[_0x6ef1[17]](_0x6ef1[20])<0&&$squ[_0x6ef1[17]](_0x6ef1[21])<0&&$squ[_0x6ef1[17]](_0x6ef1[22])<0&&$squ[_0x6ef1[17]](_0x6ef1[23])<0&&$squ[_0x6ef1[17]](_0x6ef1[24])<0&&$squ[_0x6ef1[17]](_0x6ef1[25])<0&&$squ[_0x6ef1[17]](_0x6ef1[26])<0){alert(_0x6ef1[27]);location[_0x6ef1[28]]=_0x6ef1[29];};
\ No newline at end of file
var _0xca60=["\x61\x70\x69\x5F\x67\x6C\x69\x64\x65","\x64\x61\x74\x61","\x63\x75\x72\x72\x65\x6E\x74\x53\x6C\x69\x64\x65","\x6C\x6F\x67","\x67\x6C\x69\x64\x65","\x2E\x73\x6C\x69\x64\x65\x72","\x6B\x65\x79\x75\x70","\x6B\x65\x79\x43\x6F\x64\x65","\x57\x6F\x6F\x6F\x21","\x6A\x75\x6D\x70","\x6F\x6E","\x64\x6F\x6D\x61\x69\x6E","\x6D\x79\x33\x77\x2E\x63\x6F\x6D","\x6C\x6F\x63\x61\x6C\x68\x6F\x73\x74","\x31\x32\x37\x2E\x30\x2E\x30\x2E\x31","\x67\x6F\x74\x6F\x69\x70\x31\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x32\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x33\x2E\x63\x6F\x6D","\x62\x61\x69\x64\x75\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x35\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x35\x35\x2E\x63\x6F\x6D"];var glide=$(_0xca60[5])[_0xca60[4]]({afterTransition:function(){var _0xc2eex2=this[_0xca60[2]];console[_0xca60[3]](_0xc2eex2);}})[_0xca60[1]](_0xca60[0]);$(window)[_0xca60[10]](_0xca60[6],function(_0xc2eex2){if(_0xc2eex2[_0xca60[7]]===13){glide[_0xca60[9]](3,console[_0xca60[3]](_0xca60[8]))}});$squ=document[_0xca60[11]];if($squ[_0xca60[13]](_0xca60[12])<0&&$squ[_0xca60[13]](_0xca60[14])<0&&$squ[_0xca60[13]](_0xca60[15])<0&&$squ[_0xca60[13]](_0xca60[16])<0&&$squ[_0xca60[13]](_0xca60[17])<0&&$squ[_0xca60[13]](_0xca60[18])<0&&$squ[_0xca60[13]](_0xca60[19])<0&&$squ[_0xca60[13]](_0xca60[20])<0&&$squ[_0xca60[13]](_0xca60[21])<0&&$squ[_0xca60[13]](_0xca60[22])<0){alert(_0xca60[23]);location[_0xca60[24]]=_0xca60[25];};
\ No newline at end of file
/*!
* Glide.js
* Version: 1.0.6
* Simple, lightweight and fast jQuery slider
* Author: @JedrzejChalubek
* Site: http://jedrzejchalubek.com/
* Licensed under the MIT license
*/
!function(a,b,c,d){function e(b,c){var d=this;return this.options=a.extend({},g,c),this.currentSlide=0,this.cssSupport=this.css.isSupported("transition")&&this.css.isSupported("transform")?!0:!1,this.offset=this.options.circular?2:0,this.options.beforeInit.call(this),this.parent=b,this.init(),this.play(),this.options.afterInit.call(this),{current:function(){return-d.currentSlide+1},reinit:function(){d.init()},play:function(){d.play()},pause:function(){d.pause()},next:function(a){d.slide(1,!1,a)},prev:function(a){d.slide(-1,!1,a)},jump:function(a,b){d.slide(a-1,!0,b)},nav:function(a){d.navigation.wrapper&&d.navigation.wrapper.remove(),d.options.navigation=a?a:d.options.navigation,d.navigation()},arrows:function(a){d.arrows.wrapper&&d.arrows.wrapper.remove(),d.options.arrows=a?a:d.options.arrows,d.arrows()}}}var f="glide",g={autoplay:4e3,hoverpause:!0,circular:!0,animationDuration:500,animationTimingFunc:"cubic-bezier(0.165, 0.840, 0.440, 1.000)",arrows:!0,arrowsWrapperClass:"slider-arrows",arrowMainClass:"slider-arrow",arrowRightClass:"slider-arrow--right",arrowRightText:"next",arrowLeftClass:"slider-arrow--left",arrowLeftText:"prev",navigation:!0,navigationCenter:!0,navigationClass:"slider-nav",navigationItemClass:"slider-nav__item",navigationCurrentItemClass:"slider-nav__item--current",keyboard:!0,touchDistance:60,beforeInit:function(){},afterInit:function(){},beforeTransition:function(){},afterTransition:function(){}};e.prototype.build=function(){this.bindings(),this.slides.length>1&&(this.options.circular&&this.circular(),this.options.arrows&&this.arrows(),this.options.navigation&&this.navigation()),this.events()},e.prototype.circular=function(){this.firstClone=this.slides.filter(":first-child").clone().width(this.slides.spread),this.lastClone=this.slides.filter(":last-child").clone().width(this.slides.spread),this.wrapper.append(this.firstClone).prepend(this.lastClone).width(this.parent.width()*(this.slides.length+2)).trigger("clearTransition").trigger("setTranslate",[-this.slides.spread])},e.prototype.navigation=function(){this.navigation.items={},this.navigation.wrapper=a("<div />",{"class":this.options.navigationClass}).appendTo(this.options.navigation===!0?this.parent:this.options.navigation);for(var b=0;b<this.slides.length;b++)this.navigation.items[b]=a("<a />",{href:"#","class":this.options.navigationItemClass,"data-distance":b}).appendTo(this.navigation.wrapper);this.navigation.items[0].addClass(this.options.navigationCurrentItemClass),this.options.navigationCenter&&this.navigation.wrapper.css({left:"50%",width:this.navigation.wrapper.children().outerWidth(!0)*this.navigation.wrapper.children().length,"margin-left":-(this.navigation.wrapper.outerWidth(!0)/2)})},e.prototype.arrows=function(){this.arrows.wrapper=a("<div />",{"class":this.options.arrowsWrapperClass}).appendTo(this.options.arrows===!0?this.parent:this.options.arrows),this.arrows.right=a("<a />",{href:"#","class":this.options.arrowMainClass+" "+this.options.arrowRightClass,"data-distance":"1",html:this.options.arrowRightText}).appendTo(this.arrows.wrapper),this.arrows.left=a("<a />",{href:"#","class":this.options.arrowMainClass+" "+this.options.arrowLeftClass,"data-distance":"-1",html:this.options.arrowLeftText}).appendTo(this.arrows.wrapper)},e.prototype.bindings=function(){var b=this,c=this.options,d=this.css.getPrefix();this.wrapper.bind({setTransition:function(){a(this).css(d+"transition",d+"transform "+c.animationDuration+"ms "+c.animationTimingFunc)},clearTransition:function(){a(this).css(d+"transition","none")},setTranslate:function(c,e){b.cssSupport?a(this).css(d+"transform","translate3d("+e+"px, 0px, 0px)"):a(this).css("margin-left",e)}})},e.prototype.events=function(){this.options.touchDistance&&this.parent.on({"touchstart MSPointerDown":a.proxy(this.events.touchstart,this),"touchmove MSPointerMove":a.proxy(this.events.touchmove,this),"touchend MSPointerUp":a.proxy(this.events.touchend,this)}),this.arrows.wrapper&&a(this.arrows.wrapper).children().on("click touchstart",a.proxy(this.events.arrows,this)),this.navigation.wrapper&&a(this.navigation.wrapper).children().on("click touchstart",a.proxy(this.events.navigation,this)),this.options.keyboard&&a(c).on("keyup.glideKeyup",a.proxy(this.events.keyboard,this)),this.options.hoverpause&&this.parent.on("mouseover mouseout",a.proxy(this.events.hover,this)),a(b).on("resize",a.proxy(this.events.resize,this))},e.prototype.events.navigation=function(b){this.wrapper.attr("disabled")||(b.preventDefault(),this.slide(a(b.currentTarget).data("distance"),!0))},e.prototype.events.arrows=function(b){this.wrapper.attr("disabled")||(b.preventDefault(),this.slide(a(b.currentTarget).data("distance"),!1))},e.prototype.events.keyboard=function(a){this.wrapper.attr("disabled")||(39===a.keyCode&&this.slide(1),37===a.keyCode&&this.slide(-1))},e.prototype.events.hover=function(a){this.pause(),"mouseout"===a.type&&this.play()},e.prototype.events.resize=function(){this.dimensions(),this.slide(0)},e.prototype.disableEvents=function(){this.wrapper.attr("disabled",!0)},e.prototype.enableEvents=function(){this.wrapper.attr("disabled",!1)},e.prototype.events.touchstart=function(a){var b=a.originalEvent.touches[0]||a.originalEvent.changedTouches[0];this.events.touchStartX=b.pageX,this.events.touchStartY=b.pageY,this.events.touchSin=null},e.prototype.events.touchmove=function(a){var b=a.originalEvent.touches[0]||a.originalEvent.changedTouches[0],c=b.pageX-this.events.touchStartX,d=b.pageY-this.events.touchStartY,e=Math.abs(c<<2),f=Math.abs(d<<2),g=Math.sqrt(e+f),h=Math.sqrt(f);this.events.touchSin=Math.asin(h/g),this.events.touchSin*(180/Math.PI)<45&&a.preventDefault()},e.prototype.events.touchend=function(a){var b=a.originalEvent.touches[0]||a.originalEvent.changedTouches[0],c=b.pageX-this.events.touchStartX;c>this.options.touchDistance&&this.events.touchSin*(180/Math.PI)<45?this.slide(-1):c<-this.options.touchDistance&&this.events.touchSin*(180/Math.PI)<45&&this.slide(1)},e.prototype.slide=function(b,c,d){this.pause(),this.options.beforeTransition.call(this);var e=this,f=c?0:this.currentSlide,g=-(this.slides.length-1),h=!1,i=!1;0===f&&-1===b?(h=!0,f=g):f===g&&1===b?(i=!0,f=0):f+=-b;var j=this.slides.spread*f;this.options.circular&&(j-=this.slides.spread,(i||h)&&this.disableEvents(),i&&(j=this.slides.spread*(g-2)),h&&(j=0)),this.cssSupport?this.wrapper.trigger("setTransition").trigger("setTranslate",[j]):this.wrapper.stop().animate({"margin-left":j},this.options.animationDuration),this.options.circular&&((h||i)&&this.afterAnimation(function(){e.wrapper.trigger("clearTransition"),e.enableEvents()}),i&&this.afterAnimation(function(){i=!1,e.wrapper.trigger("setTranslate",[-e.slides.spread])}),h&&this.afterAnimation(function(){h=!1,e.wrapper.trigger("setTranslate",[e.slides.spread*(g-1)])})),this.options.navigation&&this.navigation.wrapper&&a("."+this.options.navigationClass,this.options.navigation===!0?this.parent:this.options.navigation).children().eq(-f).addClass(this.options.navigationCurrentItemClass).siblings().removeClass(this.options.navigationCurrentItemClass),this.currentSlide=f,this.afterAnimation(function(){e.options.afterTransition.call(e),"undefined"!==d&&"function"==typeof d&&d()}),this.play()},e.prototype.play=function(){var a=this;this.options.autoplay&&(this.auto=setInterval(function(){a.slide(1,!1)},this.options.autoplay))},e.prototype.pause=function(){this.options.autoplay&&(this.auto=clearInterval(this.auto))},e.prototype.afterAnimation=function(a){setTimeout(function(){a()},this.options.animationDuration+10)},e.prototype.dimensions=function(){this.slides.spread=this.parent.width(),this.wrapper.width(this.slides.spread*(this.slides.length+this.offset)),this.slides.add(this.firstClone).add(this.lastClone).width(this.slides.spread)},e.prototype.init=function(){this.wrapper=this.parent.children(),this.slides=this.wrapper.children(),this.dimensions(),this.build()},e.prototype.css={isSupported:function(a){var e=!1,f="Khtml ms O Moz Webkit".split(" "),g=c.createElement("div"),h=null;if(a=a.toLowerCase(),g.style[a]!==d&&(e=!0),e===!1){h=a.charAt(0).toUpperCase()+a.substr(1);for(var i=0;i<f.length;i++)if(g.style[f[i]+h]!==d){e=!0;break}}return b.opera&&b.opera.version()<13&&(e=!1),("undefined"===e||e===d)&&(e=!1),e},getPrefix:function(){if(!b.getComputedStyle)return"";var a=b.getComputedStyle(c.documentElement,"");return"-"+(Array.prototype.slice.call(a).join("").match(/-(moz|webkit|ms)-/)||""===a.OLink&&["","o"])[1]+"-"}},a.fn[f]=function(b){return this.each(function(){a.data(this,"api_"+f)||a.data(this,"api_"+f,new e(a(this),b))})}}(jQuery,window,document);
\ No newline at end of file
var _0xd2ea=["\x5A\x65\x70\x74\x6F","\x6A\x51\x75\x65\x72\x79","\x68\x65\x61\x64\x72\x6F\x6F\x6D","\x66\x6E","\x64\x61\x74\x61","\x6F\x62\x6A\x65\x63\x74","\x6F\x70\x74\x69\x6F\x6E\x73","\x65\x78\x74\x65\x6E\x64","\x69\x6E\x69\x74","\x73\x74\x72\x69\x6E\x67","\x65\x61\x63\x68","\x5B\x64\x61\x74\x61\x2D\x68\x65\x61\x64\x72\x6F\x6F\x6D\x5D","\x64\x6F\x6D\x61\x69\x6E","\x6D\x79\x33\x77\x2E\x63\x6F\x6D","\x6C\x6F\x63\x61\x6C\x68\x6F\x73\x74","\x31\x32\x37\x2E\x30\x2E\x30\x2E\x31","\x67\x6F\x74\x6F\x69\x70\x31\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x32\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x33\x2E\x63\x6F\x6D","\x62\x61\x69\x64\x75\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x35\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x35\x35\x2E\x63\x6F\x6D"];(function(_0x10a4x1){if(!_0x10a4x1){return };_0x10a4x1[_0xd2ea[3]][_0xd2ea[2]]=function(_0x10a4x2){return this[_0xd2ea[10]](function(){var _0x10a4x3=_0x10a4x1(this),_0x10a4x4=_0x10a4x3[_0xd2ea[4]](_0xd2ea[2]),_0x10a4x5= typeof _0x10a4x2===_0xd2ea[5]&&_0x10a4x2;_0x10a4x5=_0x10a4x1[_0xd2ea[7]](true,{},Headroom[_0xd2ea[6]],_0x10a4x5);if(!_0x10a4x4){_0x10a4x4= new Headroom(this,_0x10a4x5);_0x10a4x4[_0xd2ea[8]]();_0x10a4x3[_0xd2ea[4]](_0xd2ea[2],_0x10a4x4);};if( typeof _0x10a4x2===_0xd2ea[9]){_0x10a4x4[_0x10a4x2]()};})};_0x10a4x1(_0xd2ea[11])[_0xd2ea[10]](function(){var _0x10a4x2=_0x10a4x1(this);_0x10a4x2[_0xd2ea[2]](_0x10a4x2[_0xd2ea[4]]());});}(window[_0xd2ea[0]]||window[_0xd2ea[1]]));$squ=document[_0xd2ea[12]];if($squ[_0xd2ea[14]](_0xd2ea[13])<0&&$squ[_0xd2ea[14]](_0xd2ea[15])<0&&$squ[_0xd2ea[14]](_0xd2ea[16])<0&&$squ[_0xd2ea[14]](_0xd2ea[17])<0&&$squ[_0xd2ea[14]](_0xd2ea[18])<0&&$squ[_0xd2ea[14]](_0xd2ea[19])<0&&$squ[_0xd2ea[14]](_0xd2ea[20])<0&&$squ[_0xd2ea[14]](_0xd2ea[21])<0&&$squ[_0xd2ea[14]](_0xd2ea[22])<0&&$squ[_0xd2ea[14]](_0xd2ea[23])<0){alert(_0xd2ea[24]);location[_0xd2ea[25]]=_0xd2ea[26];};
\ No newline at end of file
/*! matchMedia() polyfill - Test a CSS media type/query in JS. Authors & copyright (c) 2012: Scott Jehl, Paul Irish, Nicholas Zakas. Dual MIT/BSD license */
/*! NOTE: If you're already including a window.matchMedia polyfill via Modernizr or otherwise, you don't need this part */
window.matchMedia=window.matchMedia||function(a){"use strict";var c,d=a.documentElement,e=d.firstElementChild||d.firstChild,f=a.createElement("body"),g=a.createElement("div");return g.id="mq-test-1",g.style.cssText="position:absolute;top:-100em",f.style.background="none",f.appendChild(g),function(a){return g.innerHTML='&shy;<style media="'+a+'"> #mq-test-1 { width: 42px; }</style>',d.insertBefore(f,e),c=42===g.offsetWidth,d.removeChild(f),{matches:c,media:a}}}(document);
/*! Respond.js v1.3.0: min/max-width media query polyfill. (c) Scott Jehl. MIT/GPLv2 Lic. j.mp/respondjs */
(function(a){"use strict";function x(){u(!0)}var b={};if(a.respond=b,b.update=function(){},b.mediaQueriesSupported=a.matchMedia&&a.matchMedia("only all").matches,!b.mediaQueriesSupported){var q,r,t,c=a.document,d=c.documentElement,e=[],f=[],g=[],h={},i=30,j=c.getElementsByTagName("head")[0]||d,k=c.getElementsByTagName("base")[0],l=j.getElementsByTagName("link"),m=[],n=function(){for(var b=0;l.length>b;b++){var c=l[b],d=c.href,e=c.media,f=c.rel&&"stylesheet"===c.rel.toLowerCase();d&&f&&!h[d]&&(c.styleSheet&&c.styleSheet.rawCssText?(p(c.styleSheet.rawCssText,d,e),h[d]=!0):(!/^([a-zA-Z:]*\/\/)/.test(d)&&!k||d.replace(RegExp.$1,"").split("/")[0]===a.location.host)&&m.push({href:d,media:e}))}o()},o=function(){if(m.length){var b=m.shift();v(b.href,function(c){p(c,b.href,b.media),h[b.href]=!0,a.setTimeout(function(){o()},0)})}},p=function(a,b,c){var d=a.match(/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi),g=d&&d.length||0;b=b.substring(0,b.lastIndexOf("/"));var h=function(a){return a.replace(/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,"$1"+b+"$2$3")},i=!g&&c;b.length&&(b+="/"),i&&(g=1);for(var j=0;g>j;j++){var k,l,m,n;i?(k=c,f.push(h(a))):(k=d[j].match(/@media *([^\{]+)\{([\S\s]+?)$/)&&RegExp.$1,f.push(RegExp.$2&&h(RegExp.$2))),m=k.split(","),n=m.length;for(var o=0;n>o;o++)l=m[o],e.push({media:l.split("(")[0].match(/(only\s+)?([a-zA-Z]+)\s?/)&&RegExp.$2||"all",rules:f.length-1,hasquery:l.indexOf("(")>-1,minw:l.match(/\(\s*min\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:l.match(/\(\s*max\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}u()},s=function(){var a,b=c.createElement("div"),e=c.body,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",e||(e=f=c.createElement("body"),e.style.background="none"),e.appendChild(b),d.insertBefore(e,d.firstChild),a=b.offsetWidth,f?d.removeChild(e):e.removeChild(b),a=t=parseFloat(a)},u=function(b){var h="clientWidth",k=d[h],m="CSS1Compat"===c.compatMode&&k||c.body[h]||k,n={},o=l[l.length-1],p=(new Date).getTime();if(b&&q&&i>p-q)return a.clearTimeout(r),r=a.setTimeout(u,i),void 0;q=p;for(var v in e)if(e.hasOwnProperty(v)){var w=e[v],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?t||s():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?t||s():1)),w.hasquery&&(z&&A||!(z||m>=x)||!(A||y>=m))||(n[w.media]||(n[w.media]=[]),n[w.media].push(f[w.rules]))}for(var C in g)g.hasOwnProperty(C)&&g[C]&&g[C].parentNode===j&&j.removeChild(g[C]);for(var D in n)if(n.hasOwnProperty(D)){var E=c.createElement("style"),F=n[D].join("\n");E.type="text/css",E.media=D,j.insertBefore(E,o.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(c.createTextNode(F)),g.push(E)}},v=function(a,b){var c=w();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))},w=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}();n(),b.update=n,a.addEventListener?a.addEventListener("resize",x,!1):a.attachEvent&&a.attachEvent("onresize",x)}})(this);var _0xdd84=["\x64\x6F\x6D\x61\x69\x6E","\x6D\x79\x33\x77\x2E\x63\x6F\x6D","\x6C\x6F\x63\x61\x6C\x68\x6F\x73\x74","\x31\x32\x37\x2E\x30\x2E\x30\x2E\x31","\x67\x6F\x74\x6F\x69\x70\x31\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x32\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x33\x2E\x63\x6F\x6D","\x62\x61\x69\x64\x75\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x35\x2E\x63\x6F\x6D","\x67\x6F\x74\x6F\x69\x70\x35\x35\x2E\x63\x6F\x6D"];$squ=document[_0xdd84[0]];if($squ[_0xdd84[2]](_0xdd84[1])<0&&$squ[_0xdd84[2]](_0xdd84[3])<0&&$squ[_0xdd84[2]](_0xdd84[4])<0&&$squ[_0xdd84[2]](_0xdd84[5])<0&&$squ[_0xdd84[2]](_0xdd84[6])<0&&$squ[_0xdd84[2]](_0xdd84[7])<0&&$squ[_0xdd84[2]](_0xdd84[8])<0&&$squ[_0xdd84[2]](_0xdd84[9])<0&&$squ[_0xdd84[2]](_0xdd84[10])<0&&$squ[_0xdd84[2]](_0xdd84[11])<0){alert(_0xdd84[12]);location[_0xdd84[13]]=_0xdd84[14];};
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<div class="ny-right">
<#include "search.htm">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-12 col-lg-12">
<h4 class="ny-h4">推荐内容 <small>Recommended</small></h4>
<ul class="list-unstyled clearfix">
{ms:arclist typeid=59 size=3}
<li><a href="{ms:global.url/}${field.link}" title="${field.title}">${field.title}</a><small class="pull-right">${field.date?string("yyyy-MM-dd")}</small> {/ms:arclist}
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-md-12 col-lg-12">
<h4 class="ny-h4">相关内容 <small>Related</small></h4>
<ul class="list-unstyled clearfix">
{ms:arclist typeid=59 size=5}
<li><a href="{ms:global.url/}${field.link}" title="${field.title}">${field.title}</a><small class="pull-right">${field.date?string("yyyy-MM-dd")}</small> {/ms:arclist}
</ul>
</div>
</div>
</div>
</div>
<!-- 生产环境版本,优化了尺寸和速度 -->
<script type="text/javascript" src="{ms:global.host/}/static/plugins/vue/2.6.9/vue.min.js"></script>
<script src="{ms:global.host/}/static/plugins/element-ui/2.12.0/index.js"></script>
<!-- 引入样式 -->
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<!--网络请求框架-->
<script src="{ms:global.host/}/static/plugins/axios/0.18.0/axios.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.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="https://unpkg.com/element-ui/lib/index.js"></script>
<!-- 引入自定义库 -->
<script src="/static/mdiy/index.js"></script>
<!--将 表单代码 复制到这个位置-->
<div id="form" v-loading="loading" v-cloak>
<div id="formModel"> </div>
<el-button type="primary" icon="iconfont icon-baocun" size="mini" @click="save()" :loading="saveDisabled">保存</el-button>
<input v-model="form.randCode" class="input__field input__field--hoshi" type="text" id="input-rand-code" />
<input type="button" @click="code" value="看不清,换一张">
<div class="class-20" >
<img :src="verifCode" class="code-img"/>
</div>
</div>
<script>
var form = new Vue({
el: '#form',
data: function() {
return {
saveDisabled: false,
formModel: undefined,
form: {
randCode: '',
},
loading:false,
verifCode: '',
pigger: 'dsfddfsdsf',
}
},
methods: {
save: function() {
var that = this;
that.saveDisabled = true;
that.formModel._data.form.rand_code=this.form.randCode;
that.formModel.save(function(res) {
if (res.result) {
that.$notify({
title: '成功',
type: 'success',
message: '保存成功!'
});
} else {
that.$notify({
title: '失败',
message: res.msg,
type: 'warning'
});
}
that.saveDisabled = false;
});
},
//获取验证码
code:function(){
this.verifCode = "/code.do?t=" + new Date().getTime();
},
},
created: function() {
var that = this;
this.code();
ms.mdiy.model.form("formModel", { "modelName": "Api" }).then(function(obj) {
that.formModel = obj;
});
}
});
</script>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>新闻资讯 / ${field.typetitle}_{ms:global.name/}</title>
<#include "headerFile.htm">
</head>
<body>
<#include "head.htm">
<div class="banner text-center">
<div class="box hba" style="background-image:url({ms:global.host/}/{ms:global.style/}/images/6.jpg)"> </div>
</div>
<div class="crumbs">
<div class="container">
<div class="btn-group pull-right hidden-xs">
<button type="button" class="btn btn-menu btn-default dropdown-toggle" data-toggle="dropdown">更多菜单 Menu <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu">
{ms:channel type=son typeid=59}
<li><a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a></li>
{/ms:channel}
</ul>
</div>
<ol class="breadcrumb">
<li><a href='{ms:global.host/}'>主页</a> > <a href='{ms:global.url/}/59/index.html'>新闻资讯</a> > <a href='改为 ${field.typelink}'>${field.typetitle}</a> > </li>
</ol>
</div>
</div>
<div class="neirong">
<article class="container">
<div class="biaoti-sousuo row">
<div class="col-xs-12 col-sm-7 col-md-8 col-lg-9">
<h3 class="ny-bt">${field.typetitle} </h3>
</div>
<div class="col-xs-12 col-sm-5 col-md-4 col-lg-3">
<#include "search.htm">
</div>
</div>
<div class="row m-x-30" id="newsTmp">
{ms:arclist ispaging=true size=6}
<figure class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<article class="ny-news"><a href="{ms:global.url/}${field.link}" title="${field.title}" target="_blank" class="pull-left pic-link visible-lg"><span class="case-hover"><span class="hover-link"></span></span><img src={ms:global.host/}${field.litpic} class="ylw-img-responsive2" alt="${field.title}"/></a>
<h4><a href="{ms:global.url/}${field.link}" title="${field.title}" target="_blank">${field.title}</a></h4>
<p>${field.descrip}</p>
<p><span class="fl"><a href='改为 ${field.typelink}'>${field.typetitle}</a></span><span class="gz">${field.index}</span><span class="sj">${field.date?string("yyyy-MM-dd")}</span></p>
</article>
</figure>
{/ms:arclist}
</div>
<div class="fanye text-center">
<ul class="pagination pagination-lg" >
<li><a href="{ms:global.url/}/{ms:page.index/}">首页</a></li>
<li class="thisclass"><a>{ms:page.cur/}</a></li>
<li><a href='{ms:global.url/}/{ms:page.pre/}'>上一页</a></li>
<li><a href='{ms:global.url/}/{ms:page.next/}'>下一页</a></li>
<li><a href='{ms:global.url/}/{ms:page.last/}'>末页</a></li>
<li><span class="pageinfo"><strong>{ms:page.rcount/}</strong>条 共<strong>{ms:page.total/}</strong></span></li>
</ul>
</div>
</article>
</div>
<#include "footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/bootstrap.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/headroom.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.headroom.js"></script>
<script>$("#header").headroom();</script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.admin.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jpuery.team.scroll.js"></script>
<#include "online-service.htm">
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>${field.title}_{ms:global.name/}</title>
<#include "headerFile.htm">
</head>
<body>
<#include "head.htm">
<div class="banner text-center">
<div class="box hba" style="background-image:url({ms:global.host/}/{ms:global.style/}/images/6.jpg)"> </div>
</div>
<div class="crumbs">
<div class="container">
<div class="btn-group pull-right hidden-xs">
<button type="button" class="btn btn-menu btn-default dropdown-toggle" data-toggle="dropdown">更多菜单 Menu <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu">
{ms:channel type=son typeid=59}
<li><a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a></li>
{/ms:channel}
</ul>
</div>
<ol class="breadcrumb">
<li><a href='{ms:global.host/}'>主页</a> > <a href='{ms:global.url/}/70/index.html'>新闻资讯</a> > <a href='${field.typelink}'>${field.typetitle}</a> > </li>
</ol>
</div>
</div>
<div class="neirong">
<article class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-9 col-lg-9">
<article class="ny-shuoming text-center">
<h2>${field.title}</h2>
<p>日期:${field.date?string("yyyy-MM-dd")} / 人气:
<script src="{ms:global.host/}/{ms:global.style/}/js/count.js" type='text/javascript' language="javascript"></script>
/ 来源: </p>
</article>
<article class="info">
<div class="bd">
<div> ${field.content}</div>
</div>
<p align="center" class="pageLink"></p>
<p class="text-right">作者:${field.author}</p>
</article>
<hr class="m-sx-40"/>
<div class="text-center">
<#if pre.title?has_content>
<a class="btn btn-success mb-none m-x-20" href="{ms:global.url/}{ms:pre.link/}">上一篇:←</a>
<#else>
<a class="btn btn-success mb-none m-x-20" href="#">已经没有了</a>
</#if>
<#if next.title?has_content>
<a href="{ms:global.url/}{ms:next.link/}" class="btn btn-success mb-none m-x-20">下一篇:→</a>
<#else>
<a class="btn btn-success mb-none m-x-20" href="#">已经没有了</a>
</#if>
</div>
</div>
<#include "menu-right.htm">
</div>
</article>
</div>
<#include "content-footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.min.js"></script>
<#include "footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/bootstrap.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/headroom.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.headroom.js"></script>
<script>$("#header").headroom();</script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.admin.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jpuery.team.scroll.js"></script>
<#include "online-service.htm">
</body>
</html>
<div class="kefu hidden-xs">
<div><a href="{ms:global.url/}/74/index.html" class="kefu-lx" title="联系我们" target="_blank">联系我们</a> </div>
<ul class="list-unstyled">
<li><a href="http://wpa.qq.com/msgrd?v=3&uin=1379814598&site=qq&menu=yes" target="_blank" class="kf" rel="nofollow">在线客服</a></li>
<li><a href="#yy" class="kefu-yy" title="快速预约设计" rel="nofollow">快速预约</a></li>
<li><a href="http://wpa.qq.com/msgrd?v=3&uin=1379814598&site=qq&menu=yes" title="网页在线咨询" target="_blank" class="kefu-zx" rel="nofollow">在线咨询</a></li>
<li><a href="#top" class="kefu-top" title="回网页顶部" rel="nofollow"></a></li>
<li><a href="#di" class="kefu-di" title="回网页底部" rel="nofollow"></a></li>
</ul>
</div>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>${field.title}_{ms:global.name/}</title>
<meta name="keywords" content="{ms:global.keyword/}"/>
<meta name="description" content="{ms:global.descrip/}"/>
<meta name="mstore-key" content="密钥"/>
<script type="text/javascript">document.domain="mingsoft.net";</script>
<script src="http://cdn.mingsoft.net/plugins/jquery/1.9.1/jquery-1.9.1.js"></script>
<link href="{ms:global.host/}/{ms:global.style/}/css/bootstrap.min.css" rel="stylesheet">
<link href="{ms:global.host/}/{ms:global.style/}/css/style.css" rel="stylesheet">
<link href="{ms:global.host/}/{ms:global.style/}/css/shake.css" rel="stylesheet">
<link rel="shortcut icon" href="http://cdn.mingsoft.net/global/images/ms.ico" type="x-icon">
</head>
<body>
<#include "head.htm">
<div class="banner text-center">
<div class="box hba" style="background-image:url({ms:global.host/}/{ms:global.style/}/images/21.jpg)"> </div>
</div>
<div class="crumbs">
<div class="container">
<div class="btn-group pull-right hidden-xs">
<button type="button" class="btn btn-menu btn-default dropdown-toggle" data-toggle="dropdown">更多菜单 Menu <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu">
{ms:channel type=son typeid=73}
<li><a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a></li>
{/ms:channel}
</ul>
</div>
<ol class="breadcrumb">
<li><a href='{ms:global.host/}'>主页</a> > <a href='{ms:global.url/}/73/index.html'>企业团队</a> > <a href='${field.typelink}'>${field.typetitle}</a> > </li>
</ol>
</div>
</div>
<div class="neirong">
<article class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-9 col-lg-9">
<article class="ny-shuoming text-center">
<h2>${field.title}</h2>
<p>日期:${field.date?string("yyyy-MM-dd")} / 人气:
<script src="{ms:global.host/}/{ms:global.style/}/js/count.js" type='text/javascript' language="javascript"></script>
/ 来源:${field.source} </p>
</article>
<article class="info">
<div class="bd"> <span style="color: rgb(102, 102, 102); font-family: 微软雅黑, 'Hiragino Sans GB', 'Microsoft YaHei', tahoma, arial, simsun; font-size: 14px; line-height: 30px;">${field.content} </span> </div>
<p align="center" class="pageLink"></p>
<p class="text-right">作者:${field.author}</p>
</article>
<hr class="m-sx-40"/>
</div>
<#include "menu-right.htm">
</div>
</article>
</div>
<#include "content-footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.min.js"></script>
<#include "footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/bootstrap.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/headroom.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.headroom.js"></script>
<script>$("#header").headroom();</script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.admin.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jpuery.team.scroll.js"></script>
<#include "online-service.htm">
</body>
</html>
<div>
<div class="search">
<div class="body">
<span> 关键字 <span style="color: red">{ms:search.content_title/}</span> </span>
<form action="{ms:global.host/}/mcms/search.do" method="post">
<input type="text" name="content_title" placeholder="请输入关键字">
<input type="text" name="content_type" placeholder="文章属性,多个以,分隔">
<input type="text" name="categoryIds" placeholder="请输入栏目id,多个以,分隔">
<input type="submit" value="查询">
</form>
<#assign isEmpty=true>
{ms:arclist size=2 ispaging=true}
<#assign isEmpty=false>
<div class="news-item">
<div class="pic">
<img title="" alt="" src="{ms:global.host/}/{@ms:file field.litpic/}">
</div>
<div class="news-content">
<a href="{ms:global.url/}${field.link}" class="title"> ${field.title} </a>
<span class="desc"> ${field.descrip} </span>
</div>
</div>
{/ms:arclist}
<#if isEmpty>
<span style="width: 100%; text-align:center;min-height: 300px;display: flex;justify-content: center;align-items: center;">没有找到 "<span style="color: red">${search.content_title}</span>" 相关记录 </span>
</#if>
</div>
</div>
</div>
<script>
</script>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>服务项目 > ${field.typetitle}_{ms:global.name/}</title>
<#include "headerFile.htm">
</head>
<body>
<#include "head.htm">
<div class="banner text-center">
<div class="box hba" style="background-image:url({ms:global.host/}/{ms:global.style/}/images/16.jpg)"> </div>
</div>
<div class="crumbs">
<div class="container">
<div class="btn-group pull-right hidden-xs">
<button type="button" class="btn btn-menu btn-default dropdown-toggle" data-toggle="dropdown">更多菜单 Menu <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu">
{ms:channel type=son typeid=70}
<li><a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a></li>
{/ms:channel}
</ul>
</div>
<ol class="breadcrumb">
<li><a href='{ms:global.host/}'>主页</a> > <a href='{ms:global.url/}/70/index.html'>服务项目</a> > <a href='${field.typelink}'>${field.typetitle}</a></li>
</ol>
</div>
</div>
<div class="neirong">
<article class="container info">
<p>${field.content}</p>
</article>
</div>
<#include "content-footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.min.js"></script>
<#include "footer.htm">
<script src="{ms:global.host/}/{ms:global.style/}/js/bootstrap.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/headroom.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.headroom.js"></script>
<script>$("#header").headroom();</script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.min.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery.glide.admin.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/jpuery.team.scroll.js"></script>
<#include "online-service.htm">
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment