aBin 5 years ago
parent
commit
1368c2576b
  1. 23
      src/views/Cart/Cart.vue
  2. 60
      src/views/IncubationPlatform/Children/MakerSpace.vue

23
src/views/Cart/Cart.vue

@ -21,22 +21,20 @@
<a-input style="width: 200px" v-model="company" />
</div>
</div>
<div class="cart-box" v-if="cart.lists && cart.lists.length > 0">
<div
:key="list.id"
class="d-flex flex-column pa-5 white div-box mb-8"
v-for="list in cart.lists"
>
<p class="font-bold-20 title-color">{{ list.title }}</p>
<div class="cart-box" v-if="cart && cart.length > 0">
<div :key="list.id" class="d-flex flex-column pa-5 white div-box mb-8" v-for="list in cart">
<p
class="font-bold-20 title-color"
>{{ list.type === 0 ? '服务' : list.type === 1 ? '设备' : '成果' }}</p>
<div
:key="index"
class="d-flex flex-nowrap flex-row mb-8"
v-for="(item, index) in list.list"
v-for="(item, index) in list.carDetailList"
>
<img :src="item.src" class="cart-pic mr-8" />
<img :src="item.picUrl" class="cart-pic mr-8" />
<div class="flex-1 flex-column">
<p class="font-bold-20 title-color">{{ item.title }}</p>
<p class="font-14 textColor">{{ item.content }}</p>
<p class="font-bold-20 title-color">{{ item.name }}</p>
<p class="font-14 textColor">{{ item.description }}</p>
</div>
</div>
</div>
@ -132,8 +130,7 @@ export default {
this.phone = tel;
}
const { name, phone, company, cart } = this;
const ids = [];
ids.push(cart.id);
const ids = cart[0].carId;
const params = {
param: {
contactName: company,

60
src/views/IncubationPlatform/Children/MakerSpace.vue

@ -11,22 +11,27 @@
<div>
<div class="d-flex flex-column white">
<div class="font-bold-32 title-color py-3 px-2">众创空间介绍</div>
<div class="pa-3 font-16 line-height-36" style="text-indent: 2em">
<div class="pa-3 font-16 line-height-36" style="text-indent:2em">
<div>
本众创空间分为线下实体众创空间与线上虚拟众创空间重点面向功能食品生物医药和大健康产业领域科技型中小微企业
创客和创新创业团队开展创业孵化培育高新技术企业促进科技成果转化和产业集聚发展
本众创空间分为线下实体众创空间与线上虚拟众创空间重点面向功能食品生物医药和大健康产业
领域科技型中小微企业创客和创新创业团队开展创业孵化培育高新技术企业促进科技成果转化和产业集聚发展
</div>
<div>
本众创空间以建设专业化市场化网络化品牌化双创孵化基地为目标致力打造以公共技术服务平台为支撑
以创新创业服务为主导以创新创业大讲堂为带动以创新创业投融资为拓展线上线下相结合实体虚拟相融合的全要素专业化开放式创新创业孵化平台
着力构建众创空间-孵化器-加速器-产业园创新创业孵化链构筑创新创业生态系统
本众创空间以建设专业化市场化网络化品牌化双创孵化基地为目标致力打造以公共技术服务平台
为支撑以创新创业服务为主导以创新创业大讲堂为带动以创新创业投融资为拓展线上线下相结合
体虚拟相融合的全要素专业化开放式创新创业孵化平台着力构建众创空间-孵化器-加速器-产业园创新创业
孵化链构筑创新创业生态系统
</div>
<div>
目前空间已引入科创咨询专业服务机构并与多家
<span @click="$router.push('')" class="pointer baseColor">第三方专业机构</span>
<span
@click="$router.push('')"
class="pointer baseColor"
>第三方专业机构</span>
建立战略合作聘请
<span @click="$router.push('')" class="pointer baseColor">创业导师</span>
30余名服务领域涵盖专业技术企业管理科创咨询财务税务法务咨询等可随时为入孵企业提供针对性一对一创业辅导服务
30余名服务领域涵盖专业技术企业管理科创咨询财务税务法务咨询等可随时为入孵企业提供针
对性一对一创业辅导服务
</div>
</div>
</div>
@ -39,19 +44,44 @@
<div :key="index" style="margin-top: 40px" v-for="(item, index) in list">
<div class="d-flex justify-space-between" v-if="index % 2 === 0">
<div class="introduce-box">
<p @click="item.imgUrl ? jump(item.url) : openModel()" class="introduce-title pointer">{{ item.title }}</p>
<p
@click="item.imgUrl ? jump(item.url) : openModel()"
class="introduce-title pointer"
>{{ item.title }}</p>
<p class="introduce-content" v-if="index === 0">
实体空间由
<span @click="$router.push('/IncubationPlatform/Incubator')" class="pointer baseColor">孵化场所</span>
<span @click="$router.push('/IncubationPlatform/PublicLaboratory')" class="pointer baseColor">公共实验室</span>
<span @click="$router.push('/IncubationPlatform/PilotBase')" class="pointer baseColor">中试基地</span>部分组成
<span
@click="$router.push('/IncubationPlatform/Incubator')"
class="pointer baseColor"
>孵化场所</span>
<span
@click="$router.push('/IncubationPlatform/PublicLaboratory')"
class="pointer baseColor"
>公共实验室</span>
<span
@click="$router.push('/IncubationPlatform/PilotBase')"
class="pointer baseColor"
>中试基地</span>部分组成
</p>
<p @click="item.imgUrl ? jump(item.url) : openModel()" class="introduce-content pointer" v-else>{{ item.content }}</p>
<p
@click="item.imgUrl ? jump(item.url) : openModel()"
class="introduce-content pointer"
v-else
>{{ item.content }}</p>
</div>
<img :src="item.imgUrl" @click="item.url ? jump(item.url) : ''" class="pointer" style="width: 452px" />
<img
:src="item.imgUrl"
@click="item.url ? jump(item.url) : ''"
class="pointer"
style="width: 452px"
/>
<add-model :value="1" ref="child" style="width: 452px" />
</div>
<div @click="item.url ? jump(item.url) : ''" class="d-flex justify-space-between pointer" v-else>
<div
@click="item.url ? jump(item.url) : ''"
class="d-flex justify-space-between pointer"
v-else
>
<img :src="item.imgUrl" style="width: 452px" />
<div class="introduce-box">
<p class="introduce-title">{{ item.title }}</p>

Loading…
Cancel
Save