80 lines
2.7 KiB
Vue
80 lines
2.7 KiB
Vue
<template>
|
||
<view id="company-profile">
|
||
<nav-bar :is-back="true" :borderBottom="false" :background="'#1d85e8'"></nav-bar>
|
||
<image class="header-img" src="https://am-img.gkiiot.com/iotos/app/img/my/about/about-logo.png" mode=""></image>
|
||
<scroll-view class="scroll-box" scroll-y >
|
||
<view class="profile-txt">
|
||
<text>
|
||
基于多年打造的“工业+”核心技术、商业模式与产业链体系,全速执行“工业互联网+”的发展战略,全面涉及智慧工厂、智慧城市、智慧交通、智慧环保、智慧物流等领域,提供世界领先的智能化产品和解决方案。进一步推动工业互联网与各行业的深度融合,用创新重塑传统工业,与广大行业龙头企业携手开启工业互联网新时代。
|
||
</text>
|
||
<text>
|
||
我们建设统一的物联网平台底座,于感知设备、AI智能识别、边缘计算、泛在网络融合应用,孵化N个产品,实现工业互联网可观、可监、可控、可追溯、可复制,提升生产效率,生产质量。
|
||
</text>
|
||
<!-- <text>
|
||
基于多年打造的“工业+”核心技术、商业模式与产业链体系,全速执行“工业互联网+”的发展战略,全面涉及智慧工厂、智慧城市、智慧交通、智慧环保、智慧物流等领域,提供世界领先的智能化产品和解决方案。进一步推动工业互联网与各行业的深度融合,用创新重塑传统工业,与广大行业龙头企业携手开启工业互联网新时代。"
|
||
</text>
|
||
<text>
|
||
我们建设统一的物联网平台底座,于感知设备、AI智能识别、边缘计算、泛在网络融合应用,孵化N个产品,实现工业互联网可观、可监、可控、可追溯、可复制,提升生产效率,生产质量。
|
||
</text> -->
|
||
</view>
|
||
</scroll-view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import NavBar from '@/common/components/navbar/NavBar.vue'
|
||
export default {
|
||
data() {
|
||
return {
|
||
infoData:{},
|
||
}
|
||
},
|
||
components: {
|
||
NavBar
|
||
},
|
||
onLoad() {
|
||
this.infoData = uni.getStorageSync('info');
|
||
},
|
||
onShow() {
|
||
|
||
},
|
||
methods: {
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="less">
|
||
#company-profile{
|
||
height: 100%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
background-color: #eaeff5;
|
||
}
|
||
.scroll-box{
|
||
height: calc(100% - var(--status-bar-height) - 442rpx);
|
||
/* #ifdef APP-PLUS */
|
||
height: calc(100% - var(--status-bar-height) - 442rpx);
|
||
/* #endif */
|
||
}
|
||
.header-img{
|
||
width: 100%;
|
||
height: 442rpx;
|
||
margin-top: -44px;
|
||
/* #ifdef APP-PLUS */
|
||
margin-top: -48px;
|
||
/* #endif */
|
||
}
|
||
.profile-txt{
|
||
font-size: 30rpx;
|
||
line-height: 54rpx;
|
||
padding: 40rpx;
|
||
color: #000;
|
||
text{
|
||
display: block;
|
||
text-indent: 2em;
|
||
}
|
||
}
|
||
|
||
</style>
|