iot-ui-app/pages/my/company-profile.vue

80 lines
2.7 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>