Commit 77e48cdb authored by zhouyk's avatar zhouyk
Browse files

升级模板

parent b2a41563
<!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
This diff is collapsed.
@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
Supports Markdown
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