bingyu-mini/bingyu/pages/companyProfile/companyProfile.vue

162 lines
4.0 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<view class="profile-box">
<navs :top='top' :color='color'></navs>
<view class="bgi">
<image src="@/static/image/www.yalijuda.com_beij_LSMOFYp4vl.png" mode=""></image>
</view>
<view class="content">
<view class="profile">
<view class="title">公司介绍-Company Profile</view>
<view style="font-size: 28rpx;color: #333;font-weight: 400;">上海丙煜信息科技位于上海虹桥中心是技术为主导的科技创新型企业公司主要从事移动化信息网络与电子商务IT方案咨询与服务计算机软件开发与实施智慧城市智慧生活相关的物联网领域的开发公司经营范围APP开发小程序开发网站建设系统定制企业管理软件等公司坚持科技创新以人为本的理念我们为不同行业客户提供全面专业的定制化服务</view>
</view>
<view class="environment">
<view class="title">公司环境/Environment</view>
<image src="@/static/image/huanj.png" mode=""></image>
</view>
<view class="values">
<view class="title">价值观/Values</view>
<view style="display: flex;align-items: center;">
<image src="@/static/image/value.svg" mode=""></image>
<view class="value">服务高效 品质保障 售后安心</view>
</view>
</view>
<view class="contact">
<view class="title">联系我们/Contact Us</view>
<view class="contact-box">
<image src="https://mms2.baidu.com/it/u=1165825959,1874574843&fm=253&app=120&f=JPEGw=500&h=750" mode="aspectFill"></image>
<view class="right"></view>
<view class="card">
<view>
<view>
<image src="@/static/image/tel.svg" mode="" style="width: 36rpx;height: 30rpx;margin-right: 12rpx;"></image>
</view>
<view>+86 15236541236</view>
</view>
<view>
<view>
<image src="@/static/image/email.svg" mode="" style="width: 34rpx;height: 24rpx;margin-right: 19rpx;"></image>
</view>
<view>2145000@qq.com</view>
</view>
<view>
<view class="iconfont icon-Group"></view>
<view>ssssssxx</view>
</view>
<view>
<view class="iconfont icon-Group-1" style="padding-left: 4rpx;"></view>
<view>上海虹桥</view>
</view>
</view>
</view>
</view>
</view>
<bottoms></bottoms>
</view>
</template>
<script>
export default {
data() {
return {
color:0,
top:0
}
},
onLoad() {
this.top = uni.getMenuButtonBoundingClientRect().top;
},
}
</script>
<style lang="scss">
.profile-box{
position: relative;
padding-bottom: 75rpx;
.bgi{
width: 100%;
height: 556rpx;
position: absolute;
left: 0;
top: 0;
z-index: -10;
image{
width: 100%;
height: 556rpx;
}
}
.content{
padding: 406rpx 30rpx 83rpx;
}
.title{
color: #2A3A72;
font-size: 36rpx;
font-weight: 600;
margin-bottom: 30rpx;
}
.profile{
margin-top: 60rpx;
}
.environment{
margin-top: 80rpx;
image{
width: 100%;
height: 538rpx;
}
}
.values{
margin-top: 90rpx;
image{
width: 48rpx;
height: 40rpx;
}
.value{
margin-left: 16rpx;
font-size: 32rpx;
font-weight: 600;
color: #333;
}
}
.contact{
margin-top: 125rpx;
.contact-box{
width: 100%;
display: flex;
justify-content: space-between;
align-items: flex-end;
position: relative;
image{
width: 394rpx;
height: 412rpx;
}
.right{
width: 70rpx;
height: 70rpx;
background-color: #3887FD;
}
.card{
position: absolute;
right: 35rpx;
bottom: 35rpx;
width: 378rpx;
height: 307rpx;
padding: 28rpx 43rpx 40rpx 32rpx;
box-sizing: border-box;
box-shadow: 0 2rpx 6rpx 6rpx #0000000a;
background-color: #fff;
>view{
display: flex;
font-size: 28rpx;
color: #333;
font-weight: 500;
line-height: 62rpx;
}
.iconfont{
color: #3887FD;
margin-right: 19rpx;
}
}
}
}
}
</style>