Commit 99db1a1d authored by 陈毅's avatar 陈毅

德天首页展示

parent 0707f7f8
......@@ -11,6 +11,7 @@
height: auto;
// overflow: hidden;
}
.body .service .pa {
......@@ -87,7 +88,7 @@
}
.ivu-carousel-list {
height: 460px;
height: 537px;
}
.weixin-show {
......
This diff is collapsed.
......@@ -582,8 +582,8 @@
}
.home-news {
display: flex;
margin-top: 65px;
margin-bottom: 50px;
width: 1200px;
margin:50px auto;
img {
width: 500px;
}
......
......@@ -3,7 +3,7 @@
<div class="header-div">
<div class="header" :class="{ home: '/' == $nuxt.$route.path && top }">
<div class="nav">
<a class="logo" href="/"><img src="/image/logo.png" alt="" /></a>
<a class="logo" href="/"><img width="160px" src="/image/index/logo.png" alt="" /></a>
<Icon
class="phone"
type="md-menu"
......@@ -26,7 +26,7 @@
<div class="menu" v-show="menuShow">
<a
class="an"
style="border: none"
style="border: none;"
:class="{ cur: $nuxt.$route.path.indexOf('/product') === 0 }"
@mouseover="hover()"
@click="cpclick"
......@@ -35,11 +35,11 @@
style="position: absolute; top: 0.09rem; left: 0.6rem"
@click="cpclick"
>
<img src="/image/xia.png" alt="" style="width: 0.18rem" />
<!-- <img src="/image/xia.png" alt="" style="width: 1rem" /> -->
</div>
<div class="cp_line"></div>
<div class="flexd" v-show="cp">
<div class="line"></div>
<!-- <div class="line"></div> -->
<div class="flex p-menu">
<div
class="fg"
......@@ -75,7 +75,7 @@
<div class="menu" v-show="menuShow">
<nuxt-link
to="/news"
:class="{ cur: $nuxt.$route.path.indexOf('/case') === 0 }"
:class="{ cur: $nuxt.$route.path.indexOf('/service') === 0 }"
>服务支持</nuxt-link
>
</div>
......@@ -187,15 +187,21 @@
<div class="pt50"></div>
</div>
<div class="foot_line"></div>
<div class="main ac ba" style="font-size: 12px; color: #c0bfbf;display:flex;justify-content:space-between">
<div class="main ac ba" style="font-size: 12px; color: #c0bfbf;display:flex;justify-content:center">
<div style="width:480px;margin-left:0px"><!--Copyright &copy; 2021 {{ config.company }}-->
Copyright © 2000-2018京ICP备13034660号-1</div
Copyright © 2000-2018京ICP备13034660号-1 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;版权所有:北京德天博诚科技有限公司</div
>
<!-- <a style="color: #c0bfbf" href="https://beian.miit.gov.cn/">
{{ config.icp }}</a
> -->
<div style="width:480px">版权所有:北京德天博诚科技有限公司</div>
<!-- <div style="width:480px">版权所有:北京德天博诚科技有限公司</div> -->
</div>
<!-- <div style="width:1200px;margin:auto;font-size: 12px; color: #c0bfbf;">
<div style="width:600px;display:flex;justify-content: space-between;margin:auto">
<div>Copyright © 2000-2018京ICP备13034660号-1</div>
<div>版权所有:北京德天博诚科技有限公司</div>
</div>
</div> -->
</div>
<div class="silder">
<a @click="send('线上留言')" @mouseover="over1" @mouseout="out1">
......@@ -374,11 +380,13 @@ export default {
type:"数字化设计",
name:"骨架设计",
id:"gujia"
},{
type:"数字化设计",
name:"MBSE",
id:"mbse"
}],
},
// {
// type:"数字化设计",
// name:"MBSE",
// id:"mbse"
// }
],
[{
type:"数字化工厂",
name:"装配仿真",
......@@ -388,11 +396,11 @@ export default {
name:"机加仿真",
id:"jijia"
},
{
type:"数字化工厂",
name:"生产排产?",
id:"life"
},
// {
// type:"数字化工厂",
// name:"生产排产?",
// id:"number"
// },
]
],
config: {
......@@ -437,63 +445,15 @@ export default {
};
},
created() {
// console.log(this.menuShow);
console.log(this.menuShow);
},
mounted() {
// console.warn("process", process, process.bowser);
if (process.bowser) {
if (this.isPhone()) {
this.menuShow = false;
}
}
this.arr = JSON.parse(JSON.stringify(this.footdata));
// this.$api
// .get("/api/common/git", {
// code:'CompanyAbout'
// })
// .then((r) => {
// console.log(r)
// if (r.success) {
// console.log(JSON.parse(r.result.content));
// sessionStorage.setItem('about',r.result.content)
// this.content=JSON.parse(r.result.content)
// console.log(this.content)
// }
// });
sessionStorage.setItem("about",JSON.stringify(this.content))
// function groupBy(array, f) {
// const groups = {};
// array.forEach(function (o) {
// //注意这里必须是forEach 大写
// const group = JSON.stringify(f(o));
// groups[group] = groups[group] || [];
// groups[group].push(o);
// });
// return Object.keys(groups).map(function (group) {
// console.log(groups[group])
// return groups[group];
// });
// }
// this.$api
// .post("/pub/product/List", {
// pageSize: 10,
// isDesc: true,
// })
// .then((r) => {
// if (r.success) {
// let items = groupBy(r.result, (u) => {
// console.log(r)
// return u.type;
// });
// // console.warn(items);
// this.menuarr = items;
// console.log(this.menuarr)
// }
// });
sessionStorage.setItem("about",JSON.stringify(this.content))
localStorage.setItem("obj", JSON.stringify(this.footdata));
if (this.isPhone()) {
this.menuShow = false;
this.menuShow = true;
}
window.addEventListener("resize", () => {
if (document.body.clientWidth > 600 && !this.menuShow) {
......@@ -587,7 +547,7 @@ export default {
let flag = false;
flag = navigator.userAgent.match(
/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
);
);//手机型号
return flag;
},
hideMenu() {
......@@ -643,6 +603,7 @@ export default {
},
computed: {
top() {
console.log(this.screenY<200)
return this.screenY < 200;
},
},
......@@ -650,7 +611,7 @@ export default {
$route() {
if (this.isPhone()) {
this.menuShow = false;
// console.log(this.isPhone());
console.log(this.isPhone());
}
},
},
......@@ -660,7 +621,7 @@ export default {
.foot_line {
width: 100%;
height: 1px;
background-color: #747272;
/* background-color: #747272; */
margin-bottom: 20px;
margin-top: 20px;
}
......
......@@ -140,7 +140,7 @@
<div v-for="(item,index) in content.jzewm" :key='index'><p>{{item.name}}</p><img :src="apiurl+item.url" alt=""></div>
</div>
</div>
</div>
</div>
</div>
</template>
......@@ -148,7 +148,7 @@
import Config from '@/config';
export default {
head: {
title: "关于我们---北京见著科技有限公司--MES系统",
title: "关于我们---德天博城",
},
data() {
let groupBy = (list, fn) => {
......
......@@ -93,7 +93,7 @@
import Config from '@/config';
export default {
head: {
title: "案例---北京见著科技有限公司--MES系统"
title: "案例---德天博城"
},
name: "",
data() {
......
This diff is collapsed.
......@@ -65,7 +65,7 @@
import Config from "@/config";
export default {
head: {
title: "案例---北京见著科技有限公司--MES系统",
title: "案例---德天博城",
},
name: "",
data() {
......
......@@ -96,7 +96,7 @@
import Config from "@/config";
export default {
head: {
title: "新闻---北京见著科技有限公司--MES系统",
title: "新闻---德天博城",
},
name: "",
async asyncData({ $axios }) {
......
......@@ -231,7 +231,7 @@ export default {
product: {
banner: "/image/phm/sm.png",
bannerphone: "/image/phm/smp.jpg",
title: "3D体验平台",
title: "PHM健康管理",
jj1: "PHM预测与健康管理技术(Prognostics Health Management) 是综合利用现代化信息技术、人工智能技术的最新研究成果而提出的一种全新的管理健康状况的解决方案,其目的在于为设备运行保障、应急处置、维修活动提供决策支持,具备故障检测与隔离、故障诊断、故障预测、健康管理和部件寿命追踪等能力。",
jj2: "见著科技大数据PHM利用见著科技数据中台服务,通过对接企业的信息化管理系统ERP、PLM、MES、BPM、SCE、KMS等,对产品数据进行采集、清洗、动态展示、建立模型、预测分析等处理,从而实现产品故障预测与健康管理。",
url: "/image/phm/t527.png",
......
......@@ -57,7 +57,7 @@
export default {
name: "",
head: {
title: "SaaS MES云端协同---北京见著科技有限公司--MES系统"
title: "德天博城骨架设计"
},
components: {},
data() {
......
This diff is collapsed.
......@@ -45,7 +45,7 @@
export default {
name: "",
head: {
title: "SaaS MES云端协同---北京见著科技有限公司--MES系统"
title: "德天博城机电软研发协同"
},
components: {},
data() {
......
......@@ -53,7 +53,7 @@
export default {
name: "",
head: {
title: "SaaS MES云端协同---北京见著科技有限公司--MES系统"
title: "德天博城机加仿真"
},
components: {},
data() {
......
......@@ -58,12 +58,13 @@
export default {
name: "",
head: {
title: "SaaS MES云端协同---北京见著科技有限公司--MES系统"
title: "德天博城MBD解决方案"
},
components: {},
data() {
return {
pointIndex: 0,
title:"测试",
product: {
banner: "/image/phm/sm.png",
bannerphone: "/image/phm/smp.jpg",
......
This diff is collapsed.
......@@ -47,7 +47,7 @@
export default {
name: "",
head: {
title: "SaaS MES云端协同---北京见著科技有限公司--MES系统"
title: "德天博城项目管理"
},
components: {},
data() {
......
......@@ -56,7 +56,7 @@
export default {
name: "",
head: {
title: "SaaS MES云端协同---北京见著科技有限公司--MES系统"
title: "德天博城装配仿真"
},
components: {},
data() {
......
This image diff could not be displayed because it is too large. You can view the blob instead.
src/static/image/index/0104.png

61.3 KB | W: | H:

src/static/image/index/0104.png

84.9 KB | W: | H:

src/static/image/index/0104.png
src/static/image/index/0104.png
src/static/image/index/0104.png
src/static/image/index/0104.png
  • 2-up
  • Swipe
  • Onion skin
src/static/image/index/0105.png

107 KB | W: | H:

src/static/image/index/0105.png

183 KB | W: | H:

src/static/image/index/0105.png
src/static/image/index/0105.png
src/static/image/index/0105.png
src/static/image/index/0105.png
  • 2-up
  • Swipe
  • Onion skin
src/static/image/index/0106.png

117 KB | W: | H:

src/static/image/index/0106.png

165 KB | W: | H:

src/static/image/index/0106.png
src/static/image/index/0106.png
src/static/image/index/0106.png
src/static/image/index/0106.png
  • 2-up
  • Swipe
  • Onion skin
src/static/image/index/0107.png

143 KB | W: | H:

src/static/image/index/0107.png

177 KB | W: | H:

src/static/image/index/0107.png
src/static/image/index/0107.png
src/static/image/index/0107.png
src/static/image/index/0107.png
  • 2-up
  • Swipe
  • Onion skin
src/static/image/index/0108.png

125 KB | W: | H:

src/static/image/index/0108.png

184 KB | W: | H:

src/static/image/index/0108.png
src/static/image/index/0108.png
src/static/image/index/0108.png
src/static/image/index/0108.png
  • 2-up
  • Swipe
  • Onion skin
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