Browse Source

需求征集

master
lucky 5 years ago
parent
commit
c298c893e7
  1. BIN
      src/assets/zckj.png
  2. 16
      src/common/platform.styl
  3. 4
      src/views/Challenge/components/Enroll.vue
  4. 40
      src/views/IncubationPlatform/Children/MakerSpace.vue
  5. 8
      src/views/IncubationPlatform/Children/Services.vue
  6. 2
      src/views/IncubationPlatform/Children/place/EntitySpace.vue
  7. 2
      src/views/IncubationPlatform/Children/place/VirtualSpace.vue
  8. 6
      src/views/Industry/Children/Serve.vue
  9. 13
      src/views/NewPlatform/Children/Service.vue

BIN
src/assets/zckj.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

16
src/common/platform.styl

@ -146,13 +146,13 @@
height: 150px;
}
.space-box:hover{
box-shadow: 0 6px 6px rgba(0,0,0,0.16)
}
// .space-box:hover{
// box-shadow: 0 6px 6px rgba(0,0,0,0.16)
// }
.space-box:hover .introduce-title{
margin-top: 10px;
}
// .space-box:hover .introduce-title{
// margin-top: 10px;
// }
.introduce-box {
width: 60%;
@ -164,8 +164,8 @@
}
.introduce-title {
margin: 15px 0;
font-size: 30px;
margin: 10px 0;
font-size: 26px;
color: rgba(0,0,0,0.85);
}
.introduce-content {

4
src/views/Challenge/components/Enroll.vue

@ -1,6 +1,6 @@
<template>
<div>
<a-button @click="showModal" type="primary">需求填报</a-button>
<a-button @click="showModal" type="primary">需求征集</a-button>
<a-modal
:confirm-loading="confirmLoading"
@ -107,7 +107,7 @@ export default {
return {
form: this.$form.createForm(this, { name: 'submit' }),
visible: false,
title: '需求填报',
title: '需求征集',
formItemLayout,
formTailLayout,
confirmLoading: false,

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

@ -32,7 +32,7 @@
</div>
</div>
</div>
<div :key="index" style="margin-top: 20px" v-for="(item, index) in list">
<!-- <div :key="index" style="margin-top: 20px" v-for="(item, index) in list">
<div class="d-flex justify-space-between space-box" v-if="index % 2 === 0">
<div class="introduce-box">
<p
@ -75,6 +75,44 @@
<p class="introduce-content">{{ item.content }}</p>
</div>
</div>
<add-model :value="1" ref="child" style="width: 452px" />
</div>-->
<div style="margin-top: 20px">
<div class="d-flex justify-space-between">
<img
class="pointer mr-3"
src="../../../assets/zckj.png"
style="width: 320px;height: 228px;"
/>
<div class="flex-1 d-flex flex-column white">
<div
:key="index"
class="introduce-box d-flex flex-column pb-5"
style="width: 100%"
v-for="(item, index) in list"
>
<p
@click="item.imgUrl ? jump(item.url) : openModel()"
class="introduce-title pointer"
>
{{ item.title }}
<a-icon class="baseColor ml-3" type="right-circle" />
</p>
<p class="introduce-content" v-if="index === 0">
实体空间由
<span @click="$router.push('')" class="pointer baseColor">孵化场所</span>
<span @click="$router.push('')" class="pointer baseColor">公共实验室</span>
<span @click="$router.push('')" class="pointer baseColor">中试基地</span>部分组成
</p>
<p
@click="item.imgUrl ? jump(item.url) : openModel()"
class="introduce-content pointer"
v-else
>{{ item.content }}</p>
</div>
</div>
</div>
<add-model :value="1" ref="child" style="width: 452px" />
</div>
</div>

8
src/views/IncubationPlatform/Children/Services.vue

@ -5,13 +5,13 @@
<bread-crumb :arr="arr" />
</div>
<banner :show-page="showPage" />
<div class="flow-path">
<div class="flow-title">服务流程</div>
<div class="flow-path" style="padding: 15px 9%;">
<div class="flow-title" style="top: 30%;">服务流程</div>
<div class="flow-content1">
<img src="~assets/image.png" style="width: 100%" />
</div>
</div>
<div class="inner d-flex flex-wrap">
<div class="inner d-flex flex-wrap" style="margin: 20px auto">
<div
:class="(index + 1) % 4 === 0 ? 'margin-0' : ''"
:key="index"
@ -213,7 +213,7 @@ export default {
phoneRules: [
{ required: true, pattern: new RegExp(/^[1][3,4,5,6,7,8,9][0-9]{9}$/), whitespace: true, message: '请输入正确的手机号' },
],
showList: ['查看全部', '查看全部', '查看全部', '查看全部'],
showList: ['查看全部', '查看全部', '查看全部', '查看全部', '查看全部', '查看全部', '查看全部', '查看全部'],
typeData: {
type: 0,
id: '',

2
src/views/IncubationPlatform/Children/place/EntitySpace.vue

@ -103,7 +103,7 @@
</div>-->
<!-- 入驻企业名录 -->
<div class="center-box" style="margin-bottom: 15px">
<div class="center-title">
<div class="center-title" style="top: 12%;">
<div class="circular"></div>
<div style="margin-left: 40px">入驻企业名录</div>
</div>

2
src/views/IncubationPlatform/Children/place/VirtualSpace.vue

@ -15,7 +15,7 @@
>统计信息填报</a-button>
</div>
<div class="center-box c-box" style="margin-bottom: 160px">
<div class="center-title">
<div class="center-title" style="top: 7%;">
<div class="circular"></div>
<div style="margin-left: 40px">入驻企业名录</div>
</div>

6
src/views/Industry/Children/Serve.vue

@ -5,13 +5,13 @@
<bread-crumb :arr="arr" />
</div>
<banner :show-page="showPage" />
<div class="flow-path">
<div class="flow-title">服务流程</div>
<div class="flow-path" style="padding: 15px 9%;">
<div class="flow-title" style="top: 30%;">服务流程</div>
<div class="flow-content">
<img src="~assets/image.png" style="width: 100%" />
</div>
</div>
<div class="inner d-flex flex-wrap" style="margin: 40px auto">
<div class="inner d-flex flex-wrap" style="margin: 20px auto">
<div
:class="(index + 1) % 3 === 0 ? 'margin-0' : ''"
:key="index"

13
src/views/NewPlatform/Children/Service.vue

@ -5,13 +5,13 @@
<bread-crumb :arr="arr" />
</div>
<banner :show-page="showPage" />
<!-- <div class="flow-path">
<div class="flow-title">服务流程</div>
<div class="flow-path" style="padding: 15px 9%;">
<div class="flow-title" style="top: 30%;">服务流程</div>
<div class="flow-content">
<img src="~assets/image.png" style="width: 100%" />
</div>
</div>-->
<div class="inner d-flex flex-wrap" style="margin: 30px auto">
</div>
<div class="inner d-flex flex-wrap" style="margin: 20px auto">
<div
:class="(index + 1) % 4 === 0 ? 'margin-0' : ''"
:key="index"
@ -23,7 +23,10 @@
<p class="font-24 my-4" style="text-align: center">
<span>{{ item.name }}</span>
</p>
<p class="font-16 my-4 textColor line-height-30 item-content">{{ item.intro }}</p>
<p
class="font-16 my-4 textColor line-height-30 item-content"
v-if="item.intro"
>{{ item.intro }}</p>
<!-- <p
@click="jump(item.id)"
class="font-16 baseColor"

Loading…
Cancel
Save