You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.6 KiB
53 lines
1.6 KiB
<template>
|
|
<view>
|
|
<view class="about">
|
|
<view class="about-us">关于我们</view>
|
|
<view class="about-content">
|
|
<view>“创时代新一代信息技术孵化器”由山西创时代企业孵化器有限公司于2019年初开始建设运营,2019年5月在综改区备案,位于山西转型综改示范区太原学府院区中心北街以南山西环保科技园中绿大厦2-5层,总面积4000平方米,规划开放式办公空间1685平米,独立办公室22间1001平米,共享会议室6个333平米,自用办公场地132平米以及休闲配套设施,购置电脑、打印机、复印机、档案柜、整理桌、办公桌椅办公用设备80多台(套),并组建经验丰富的管理服务团队14人,聘请10名导师组建孵化导师团队,与9家第三方专业机构达成长期合作协议,共同开展孵化器的运营建设。已引进入驻企业31家,创业团队(创客)5个。</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
onShareAppMessage(res) {
|
|
if (res.from === 'button') {// 来自页面内分享按钮
|
|
console.log(res.target)
|
|
}
|
|
return {
|
|
title: '',
|
|
path: '/pages/About/About'
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.about{
|
|
margin: 20px;
|
|
border-radius: 10px;
|
|
padding: 20px 20px;
|
|
background-color: $white;
|
|
}
|
|
.about-us{
|
|
display: flex;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
color: $gray;
|
|
justify-content: center;
|
|
}
|
|
.about-content view{
|
|
margin-top: 15px;
|
|
text-indent:2em;
|
|
letter-spacing:1px
|
|
}
|
|
</style>
|
|
|