diff --git a/src/components/FooterPage/FooterPage.vue b/src/components/FooterPage/FooterPage.vue index 5a46ec0..06865d9 100644 --- a/src/components/FooterPage/FooterPage.vue +++ b/src/components/FooterPage/FooterPage.vue @@ -14,10 +14,10 @@
发现
- 创新挑战 - 创新平台 - 孵化平台 - 产业平台 + 政策资讯 + 创新社区 + 创业社区 + 产业社区 交流社区
diff --git a/src/components/HeadNav/HeadNav.vue b/src/components/HeadNav/HeadNav.vue index 1107eaf..c117929 100644 --- a/src/components/HeadNav/HeadNav.vue +++ b/src/components/HeadNav/HeadNav.vue @@ -76,18 +76,18 @@ export default { url: '/About/Partner', }, { - title: '衍生企业', + title: '加入我们', url: '/About/SpinOffs', }, ], }, { - name: '创新政策', + name: '政策资讯', children: [], url: '/Policy', }, { - name: '创新平台', + name: '创新社区', children: [ { title: '协同创新中心', @@ -101,11 +101,15 @@ export default { title: '创新服务', url: '/NewPlatform/NewService', }, + { + title: '交流社区', + url: '/NewPlatform/Community', + }, ], url: '/NewPlatform/NewCore', }, { - name: '孵化平台', + name: '创业社区', url: '/IncubationPlatform/MakerSpace', children: [ { @@ -120,10 +124,14 @@ export default { title: '产品展示', url: '/IncubationPlatform/Products', }, + { + title: '交流社区', + url: '/IncubationPlatform/Community', + }, ], }, { - name: '产业平台', + name: '产业社区', children: [ { title: '产业创新联盟', @@ -134,50 +142,58 @@ export default { url: '/Industry/Serve', }, { - title: '衍生企业', - url: '/Industry/Enterprise', - }, - ], - url: '/Industry/Union', - }, - { - name: '知识平台', - children: [], - url: '/Knowledge', - }, - { - name: '活动公告', - children: [], - url: '/Activity', - }, - { - name: '创新挑战', - children: [ - { - title: '需求征集', - url: '/Challenge/Solicitation', + title: '产品展示', + url: '/Industry/Products', }, { - title: '项目发布', - url: '/Challenge/Release', + title: '交流社区', + url: '/Industry/Community', }, { - title: '结果公告', - url: '/Challenge/Notice', + title: '衍生企业', + url: '/Industry/Enterprise', }, ], - url: '/Challenge/Solicitation', - }, - { - name: '交流社区', - children: [], - url: '/Community', + url: '/Industry/Union', }, { - name: '联系我们', + name: '创业学院', children: [], - url: '/ContactUs', + url: '/Knowledge', }, + // { + // name: '活动公告', + // children: [], + // url: '/Activity', + // }, + // { + // name: '创新挑战', + // children: [ + // { + // title: '需求征集', + // url: '/Challenge/Solicitation', + // }, + // { + // title: '项目发布', + // url: '/Challenge/Release', + // }, + // { + // title: '结果公告', + // url: '/Challenge/Notice', + // }, + // ], + // url: '/Challenge/Solicitation', + // }, + // { + // name: '交流社区', + // children: [], + // url: '/Community', + // }, + // { + // name: '联系我们', + // children: [], + // url: '/ContactUs', + // }, ], }; }, diff --git a/src/components/Index/IndexNewList.vue b/src/components/Index/IndexNewList.vue index 25a08cf..dea8510 100644 --- a/src/components/Index/IndexNewList.vue +++ b/src/components/Index/IndexNewList.vue @@ -23,7 +23,7 @@
-
+
活动公告 @@ -40,18 +40,35 @@
+
+
+ 企业简报 + +
+ + more + + +
+ +
{{ item.title }}
-
- -
-
+
+
+ +
@@ -88,6 +105,9 @@ export default { this.setActDetail(item); if (i === 0) { this.$router.push('/ItDetails'); + } + if (i === 2) { + this.$router.push('/BriefingDetails'); } else { this.$router.push('/ActDetails'); } diff --git a/src/components/ServiceDemand/ServiceDemand.vue b/src/components/ServiceDemand/ServiceDemand.vue new file mode 100644 index 0000000..f9b7f43 --- /dev/null +++ b/src/components/ServiceDemand/ServiceDemand.vue @@ -0,0 +1,356 @@ + + + + + diff --git a/src/config/api.js b/src/config/api.js index c34b2b2..9fd4f4f 100644 --- a/src/config/api.js +++ b/src/config/api.js @@ -57,6 +57,9 @@ export const front = params => axios.post(`${activity}/query/front`, params); // 查询活动公告详情 export const activeDetail = params => axios.post(`${activity}/query/detail`, params); +// 查询企业简报列表 +export const frontInfo = params => axios.post(`${activity}/query/frontInfo`, params); + // 申请加入活动 export const apply = params => axios.post(`${activity}/apply`, params); diff --git a/src/router/index.js b/src/router/index.js index e5be628..459ca2d 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -111,6 +111,18 @@ const routes = [ name: 'ActDetails', component: () => import(/* webpackChunkName: "cooperative-enterprise" */ 'views/Activity/ActDetails.vue'), }, + // 企业简报界面 + { + path: '/Briefing', + name: 'Briefing', + component: () => import(/* webpackChunkName: "cooperative-enterprise" */ 'views/Briefing/Briefing.vue'), + }, + // 企业简报详情界面 + { + path: '/BriefingDetails', + name: 'BriefingDetails', + component: () => import(/* webpackChunkName: "cooperative-enterprise" */ 'views/Briefing/BriefingDetails.vue'), + }, // 联系我们界面 { path: '/ContactUs', @@ -138,6 +150,11 @@ const routes = [ name: 'Service', component: () => import(/* webpackChunkName: "cooperative-enterprise" */ 'views/NewPlatform/Children/Service.vue'), }, + { + path: '/NewPlatform/Community', + name: 'Community', + component: () => import(/* webpackChunkName: "cooperative-enterprise" */ 'views/NewPlatform/Children/Community.vue'), + }, { path: '/NewPlatform/ServiceDet', name: 'ServiceDet', @@ -235,6 +252,12 @@ const routes = [ name: 'Products', component: () => import(/* webpackChunkName: "cooperative-enterprise" */ 'views/IncubationPlatform/Children/Products.vue'), }, + // 交流社区 + { + path: '/IncubationPlatform/Community', + name: 'Community', + component: () => import(/* webpackChunkName: "cooperative-enterprise" */ 'views/IncubationPlatform/Children/Community.vue'), + }, // 实体众创空间 { path: '/IncubationPlatform/MakerSpace/EntitySpace', @@ -307,6 +330,16 @@ const routes = [ name: 'Enterprise', component: () => import(/* webpackChunkName: "cooperative-enterprise" */ 'views/Industry/Children/Enterprise.vue'), }, + { + path: '/Industry/Products', + name: 'Products', + component: () => import(/* webpackChunkName: "cooperative-enterprise" */ 'views/Industry/Children/Products.vue'), + }, + { + path: '/Industry/Community', + name: 'Community', + component: () => import(/* webpackChunkName: "cooperative-enterprise" */ 'views/Industry/Children/Community.vue'), + }, ], }, // 知识平台界面 diff --git a/src/store/modules/home/actions.js b/src/store/modules/home/actions.js index 2954924..4ba5460 100644 --- a/src/store/modules/home/actions.js +++ b/src/store/modules/home/actions.js @@ -1,6 +1,6 @@ import axios from 'axios'; import { message } from 'ant-design-vue'; -import { industryInfo, front, getPageDetail, queryRotation, frontSearchCompany, getUserSer } from '@/config/api'; +import { industryInfo, front, frontInfo, getPageDetail, queryRotation, frontSearchCompany, getUserSer } from '@/config/api'; const actions = { /** @@ -43,6 +43,26 @@ const actions = { } }, + /** + * 获取企业简报列表 + * @param {any} commit + * @param {object} params 提交的数据 + */ + async getFrontInfoList({ commit }, params) { + try { + const res = await frontInfo(params); + const { code, msg, data } = res.data; + if (code === 200) { + return data; + } else { + message.error(msg || '获取失败'); + throw msg; + } + } catch (error) { + throw error || '获取失败'; + } + }, + /** * 介绍页面详情查询 * @param {any} commit @@ -86,7 +106,7 @@ const actions = { */ async getQueryRotation({ commit }, showPage) { try { - const params = { param: { showPage,showPosition:1 } }; + const params = { param: { showPage, showPosition: 1 } }; const res = await queryRotation(params); const { code, msg, data } = res.data; if (code === 200) { diff --git a/src/views/About/Children/SpinOffs.vue b/src/views/About/Children/SpinOffs.vue index c831c08..961712e 100644 --- a/src/views/About/Children/SpinOffs.vue +++ b/src/views/About/Children/SpinOffs.vue @@ -4,8 +4,21 @@
-
+ +
+ +
+

联系我们

+ +
+ +
+

加入我们

+ + +
@@ -14,18 +27,23 @@ import { mapState, mapMutations, mapActions } from 'vuex'; import HNav from './../components/HNav.vue'; import BreadCrumb from 'components/BreadCrumb/BreadCrumb.vue'; -import DeriveEnterprise from 'components/Introduce/DeriveEnterprise.vue'; +// import DeriveEnterprise from 'components/Introduce/DeriveEnterprise.vue'; + +import Contact from 'components/Introduce/ContactUs.vue'; +import RichText from 'components/Introduce/RichText.vue'; +import Model from 'components/Introduce/Model.vue'; export default { name: 'Partner', - components: { HNav, BreadCrumb, DeriveEnterprise }, + components: { HNav, BreadCrumb, Contact, RichText, Model }, + data() { return { - title: '衍生企业', + title: '联系我们', typeOfPlatform: '关于我们', arr: [ { name: '关于我们', url: '/About/Introduce' }, - { name: '衍生企业', url: '' }, + { name: '加入我们', url: '' }, ], }; }, @@ -36,4 +54,8 @@ export default { .inner { margin: 10px auto 15px; } + +.small-title { + margin: 1em 0; +} diff --git a/src/views/About/components/HNav.vue b/src/views/About/components/HNav.vue index 373af94..520bc80 100644 --- a/src/views/About/components/HNav.vue +++ b/src/views/About/components/HNav.vue @@ -30,7 +30,7 @@ export default { url: '/About/Partner', }, { - title: '衍生企业', + title: '加入我们', url: '/About/SpinOffs', }, ], diff --git a/src/views/Briefing/Briefing.vue b/src/views/Briefing/Briefing.vue new file mode 100644 index 0000000..7154fff --- /dev/null +++ b/src/views/Briefing/Briefing.vue @@ -0,0 +1,278 @@ + + + + + + + diff --git a/src/views/Briefing/BriefingDetails.vue b/src/views/Briefing/BriefingDetails.vue new file mode 100644 index 0000000..44a305c --- /dev/null +++ b/src/views/Briefing/BriefingDetails.vue @@ -0,0 +1,182 @@ + + + + + diff --git a/src/views/Briefing/components/Enroll.vue b/src/views/Briefing/components/Enroll.vue new file mode 100644 index 0000000..7dc8719 --- /dev/null +++ b/src/views/Briefing/components/Enroll.vue @@ -0,0 +1,321 @@ + + + + diff --git a/src/views/FirstPage/FirstPage.vue b/src/views/FirstPage/FirstPage.vue index cc850f3..e8c2a09 100644 --- a/src/views/FirstPage/FirstPage.vue +++ b/src/views/FirstPage/FirstPage.vue @@ -8,47 +8,61 @@
- + - -
+ +
- +
+ +

+ 需求征集 + >>> +

+

+ 创新挑战 + >>> +

+
- - -
-
- -
{{ platform.firstName }}
-
{{ platform.secondName }}
+ + +
+
+
-
- - +
+ +
+
+
+ + +
+ +
+ +
+
- -
- -
-
+
@@ -57,9 +71,10 @@ import { mapState, mapActions } from 'vuex'; import Rotation from 'components/Rotation/Rotation.vue'; import IndexNewList from 'components/Index/IndexNewList.vue'; import { frontSearchFriend, frontSearchCompany } from 'config/api'; +import ServiceDemand from 'components/ServiceDemand/ServiceDemand.vue'; export default { - components: { Rotation, IndexNewList }, + components: { Rotation, IndexNewList, ServiceDemand }, data() { return { services: [ @@ -67,59 +82,67 @@ export default { id: '01', chinese: '创新服务', english: 'INNOVATIVE', - path: '/NewPlatform/NewService', - url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210119/index06.png', + path: '/NewPlatform/NewCore', + url: 'https://www.sxgreenvalley.com/gateway/greenvalley/uploads/2021-07-06/01.png', }, { id: '02', - chinese: '孵化服务', + chinese: '创业服务', english: 'INCUBATION', - path: '/IncubationPlatform/Services', - url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210119/index07.png', + path: '/IncubationPlatform/MakerSpace', + url: 'https://www.sxgreenvalley.com/gateway/greenvalley/uploads/2021-07-06/02.png', }, { id: '03', chinese: '产业服务', english: 'INDUSTRIAL', - path: '/Industry/Serve', - url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210119/index08.png', + path: '/Industry/Products', + url: 'https://www.sxgreenvalley.com/gateway/greenvalley/uploads/2021-07-06/03.png', }, ], platforms: [ { id: '04', - firstName: '创新挑战', - secondName: '', path: '/Challenge/Solicitation', - url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210119/index01.png', + url: 'https://www.sxgreenvalley.com/gateway/greenvalley/uploads/2021-07-06/04.png', }, { id: '05', - firstName: '科技资源开放共享服务平台', - secondName: '', path: '/NewPlatform/Share', - url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210119/index02.png', + url: 'https://www.sxgreenvalley.com/gateway/greenvalley/uploads/2021-07-06/05.png', }, { id: '06', - firstName: '知识产权与技术转移转化服务平台', - secondName: '', path: '/NewPlatform/Transfer', - url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210119/index03.png', - }, - { - id: '07', - firstName: '知识培训与科技人才服务平台', - secondName: '', - path: '/NewPlatform/Develop', - url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210119/index04.png', + url: 'https://www.sxgreenvalley.com/gateway/greenvalley/uploads/2021-07-06/06.png', }, // { - // id: '08', - // firstName: '知识平台', + // id: '04', + // firstName: '创新挑战', // secondName: '', - // path: '/Knowledge', - // url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210119/index05.png', + // path: '/Challenge/Solicitation', + // url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210119/index01.png', + // }, + // { + // id: '05', + // firstName: '科技资源开放共享服务平台', + // secondName: '', + // path: '/NewPlatform/Share', + // url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210119/index02.png', + // }, + // { + // id: '06', + // firstName: '知识产权与技术转移转化服务平台', + // secondName: '', + // path: '/NewPlatform/Transfer', + // url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210119/index03.png', + // }, + // { + // id: '07', + // firstName: '知识培训与科技人才服务平台', + // secondName: '', + // path: '/NewPlatform/Develop', + // url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210119/index04.png', // }, ], lists: [ @@ -133,23 +156,45 @@ export default { name: '活动公告', news: [], }, + { + id: 3, + name: '企业简报', + news: [], + }, ], - height: '', + height: 150, + timer: null, + modelIntro: '', }; }, + computed: mapState('home', ['actList', 'actIpCon', 'actCurrent']), + created() { this.getData1(); this.getData2(); this.getIndustryInfoLists(); - this.getFrontLists(); + this.getFrontListInfoLists(); }, + mounted() { var oDiv = document.getElementById('hy-news'); - this.height = oDiv.offsetHeight + 60 + 'px'; + if (!oDiv.offsetHeight || oDiv.offsetHeight === 0) { + this.timer = setInterval(() => { + oDiv = document.getElementById('hy-news'); + if (oDiv.offsetHeight) { + this.height = oDiv.offsetHeight; + this.getFrontLists(); + } + }, 1000); + } else { + this.height = oDiv.offsetHeight; + this.getFrontLists(); + } }, + methods: { - ...mapActions('home', ['getIndustryInfoList', 'getFrontList']), + ...mapActions('home', ['getIndustryInfoList', 'getFrontList', 'getFrontInfoList']), // 查询衍生企业 async getData1() { @@ -201,19 +246,39 @@ export default { this.lists[0].news = res.list; }, + // 获取企业简报列表 + async getFrontListInfoLists() { + const params = { + param: { + pageNum: 1, + pageSize: 3, + }, + }; + const res = await this.getFrontInfoList(params); + this.lists[2].news = res.list; + }, + // 获取活动公告列表 async getFrontLists() { + clearInterval(this.timer); const params = { param: { activityType: [], pageNum: 1, - pageSize: 6, + pageSize: this.height > 160 ? 3 : 2, title: '', }, }; const res = await this.getFrontList(params); this.lists[1].news = res.list; }, + + // 打开服务需求 + showIntro() { + // this.$refs.child.showModel(); + this.modelIntro = '服务需求'; + this.$refs.child.setTypeDataId(0); + }, }, }; @@ -253,9 +318,9 @@ export default { transition: all 0.2s ease 0s; } -.hy-news { - height: 746px; -} +// .hy-news { +// height: 746px; +// } .hd-news { background: white; diff --git a/src/views/IncubationPlatform/Children/Community.vue b/src/views/IncubationPlatform/Children/Community.vue new file mode 100644 index 0000000..81564ef --- /dev/null +++ b/src/views/IncubationPlatform/Children/Community.vue @@ -0,0 +1,47 @@ + + + + + + diff --git a/src/views/IncubationPlatform/Children/Incubator.vue b/src/views/IncubationPlatform/Children/Incubator.vue index 3dec5df..5e96da7 100644 --- a/src/views/IncubationPlatform/Children/Incubator.vue +++ b/src/views/IncubationPlatform/Children/Incubator.vue @@ -37,7 +37,7 @@ export default { title: '孵化平台-孵化场所', showPage: 45, arr: [ - { name: '孵化平台', url: '/IncubationPlatform/MakerSpace' }, + { name: '创业社区', url: '/IncubationPlatform/MakerSpace' }, { name: '众创空间', url: '/IncubationPlatform/MakerSpace' }, { name: '实体众创空间', url: '/IncubationPlatform/MakerSpace/EntitySpace' }, { name: '孵化场所', url: '' }, diff --git a/src/views/IncubationPlatform/Children/MakerSpace.vue b/src/views/IncubationPlatform/Children/MakerSpace.vue index f693678..0a20734 100644 --- a/src/views/IncubationPlatform/Children/MakerSpace.vue +++ b/src/views/IncubationPlatform/Children/MakerSpace.vue @@ -136,7 +136,7 @@ export default { return { showPage: 41, arr: [ - { name: '孵化平台', url: '/IncubationPlatform/MakerSpace' }, + { name: '创业社区', url: '/IncubationPlatform/MakerSpace' }, { name: '众创空间', url: '' }, ], list: [ diff --git a/src/views/IncubationPlatform/Children/Partner.vue b/src/views/IncubationPlatform/Children/Partner.vue index 50c15ba..6cb5ccc 100644 --- a/src/views/IncubationPlatform/Children/Partner.vue +++ b/src/views/IncubationPlatform/Children/Partner.vue @@ -24,9 +24,9 @@ export default { data() { return { title: '合作伙伴', - typeOfPlatform: '孵化平台', + typeOfPlatform: '创业社区', arr: [ - { name: '孵化平台', url: '/IncubationPlatform/MakerSpace' }, + { name: '创业社区', url: '/IncubationPlatform/MakerSpace' }, { name: '第三方专业机构', url: '' }, ], }; diff --git a/src/views/IncubationPlatform/Children/PilotBase.vue b/src/views/IncubationPlatform/Children/PilotBase.vue index 2fe732d..7d2639b 100644 --- a/src/views/IncubationPlatform/Children/PilotBase.vue +++ b/src/views/IncubationPlatform/Children/PilotBase.vue @@ -27,7 +27,7 @@ export default { title: '孵化平台-中试基地', showPage: 43, arr: [ - { name: '孵化平台', url: '/IncubationPlatform/MakerSpace' }, + { name: '创业社区', url: '/IncubationPlatform/MakerSpace' }, { name: '众创空间', url: '/IncubationPlatform/MakerSpace' }, { name: '实体众创空间', url: '/IncubationPlatform/MakerSpace/EntitySpace' }, { name: '中试基地', url: '' }, diff --git a/src/views/IncubationPlatform/Children/Products.vue b/src/views/IncubationPlatform/Children/Products.vue index c0cd991..a5b8e7f 100644 --- a/src/views/IncubationPlatform/Children/Products.vue +++ b/src/views/IncubationPlatform/Children/Products.vue @@ -53,7 +53,7 @@ export default { data() { return { arr: [ - { name: '孵化平台', url: '/IncubationPlatform/MakerSpace' }, + { name: '创业社区', url: '/IncubationPlatform/MakerSpace' }, { name: '产品展示', url: '' }, ], productIpt: '', // 产品搜索框内容 diff --git a/src/views/IncubationPlatform/Children/PublicLaboratory.vue b/src/views/IncubationPlatform/Children/PublicLaboratory.vue index 804e2d3..f0b9d92 100644 --- a/src/views/IncubationPlatform/Children/PublicLaboratory.vue +++ b/src/views/IncubationPlatform/Children/PublicLaboratory.vue @@ -27,7 +27,7 @@ export default { title: '孵化平台-公共实验室', showPage: 42, arr: [ - { name: '孵化平台', url: '/IncubationPlatform/MakerSpace' }, + { name: '创业社区', url: '/IncubationPlatform/MakerSpace' }, { name: '众创空间', url: '/IncubationPlatform/MakerSpace' }, { name: '实体众创空间', url: '/IncubationPlatform/MakerSpace/EntitySpace' }, { name: '公共实验室', url: '' }, diff --git a/src/views/IncubationPlatform/Children/Services.vue b/src/views/IncubationPlatform/Children/Services.vue index e38328e..6fb11a5 100644 --- a/src/views/IncubationPlatform/Children/Services.vue +++ b/src/views/IncubationPlatform/Children/Services.vue @@ -26,28 +26,27 @@ style="height: 220px; width: 100%; border: 1px solid #ccc" />

{{ item.name }}

-
+
{{ item.intro.slice(0,45) }} more -
- -
+ +

{{ item.intro }}

- -

{{ modelIntro }}

+ +

{{ modelIntro }}

+ + + + + diff --git a/src/views/Industry/Children/Enterprise.vue b/src/views/Industry/Children/Enterprise.vue index f1f7775..7c07c50 100644 --- a/src/views/Industry/Children/Enterprise.vue +++ b/src/views/Industry/Children/Enterprise.vue @@ -20,9 +20,9 @@ export default { data() { return { title: '衍生企业', - typeOfPlatform: '产业平台', + typeOfPlatform: '产业社区', arr: [ - { name: '产业平台', url: '/Challenge/Union' }, + { name: '产业社区', url: '/Industry/Union' }, { name: '衍生企业', url: '' }, ], }; diff --git a/src/views/Industry/Children/Products.vue b/src/views/Industry/Children/Products.vue new file mode 100644 index 0000000..9a32ec3 --- /dev/null +++ b/src/views/Industry/Children/Products.vue @@ -0,0 +1,183 @@ + + + + + diff --git a/src/views/Industry/Children/Serve.vue b/src/views/Industry/Children/Serve.vue index 1693b6c..52531d4 100644 --- a/src/views/Industry/Children/Serve.vue +++ b/src/views/Industry/Children/Serve.vue @@ -185,9 +185,9 @@ export default { data() { return { title: '产业服务', - typeOfPlatform: '产业平台', + typeOfPlatform: '产业社区', arr: [ - { name: '产业平台', url: '/Challenge/Union' }, + { name: '产业社区', url: '/Industry/Union' }, { name: '产业服务', url: '/Industry/Serve' }, ], showPage: 52, diff --git a/src/views/Industry/Children/Union.vue b/src/views/Industry/Children/Union.vue index de0d9e9..448fbf5 100644 --- a/src/views/Industry/Children/Union.vue +++ b/src/views/Industry/Children/Union.vue @@ -25,9 +25,9 @@ export default { data() { return { title: '产业平台-产业创新联盟', - typeOfPlatform: '产业平台', + typeOfPlatform: '产业社区', arr: [ - { name: '产业平台', url: '/Challenge/Union' }, + { name: '产业社区', url: '/Industry/Union' }, { name: '产业创新联盟', url: '' }, ], list: [], diff --git a/src/views/Industry/Children/components/HNav.vue b/src/views/Industry/Children/components/HNav.vue index cb9130b..7c7c477 100644 --- a/src/views/Industry/Children/components/HNav.vue +++ b/src/views/Industry/Children/components/HNav.vue @@ -1,8 +1,11 @@ @@ -22,6 +25,14 @@ export default { title: '产业服务', url: '/Industry/Serve', }, + { + title: '产品展示', + url: '/Industry/Products', + }, + { + title: '交流社区', + url: '/Industry/Community', + }, { title: '衍生企业', url: '/Industry/Enterprise', @@ -33,8 +44,12 @@ export default { console.log(); if (this.$route.fullPath === '/Industry/Serve') { this.activeNum = 1; - } else if (this.$route.fullPath === '/Industry/Enterprise') { + } else if (this.$route.fullPath === '/Industry/Products') { this.activeNum = 2; + } else if (this.$route.fullPath === '/Industry/Community') { + this.activeNum = 3; + } else if (this.$route.fullPath === '/Industry/Enterprise') { + this.activeNum = 4; } else { this.activeNum = 0; } diff --git a/src/views/Industry/components/AddModel.vue b/src/views/Industry/components/AddModel.vue new file mode 100644 index 0000000..f465a4d --- /dev/null +++ b/src/views/Industry/components/AddModel.vue @@ -0,0 +1,228 @@ + + + + + diff --git a/src/views/Industry/components/AddProject.vue b/src/views/Industry/components/AddProject.vue new file mode 100644 index 0000000..a61e335 --- /dev/null +++ b/src/views/Industry/components/AddProject.vue @@ -0,0 +1,464 @@ + + + + + diff --git a/src/views/Knowledge/Knowledge.vue b/src/views/Knowledge/Knowledge.vue index 57fa316..4071cce 100644 --- a/src/views/Knowledge/Knowledge.vue +++ b/src/views/Knowledge/Knowledge.vue @@ -40,8 +40,8 @@ export default { return { str: '知识培训服务平台', title: '知识平台', - typeOfPlatform: '知识平台', - arr: [{ name: '知识平台', url: '/Knowledge' }], + typeOfPlatform: '创业学院', + arr: [{ name: '创业学院', url: '/Knowledge' }], list: [], current: 1, pageSize: 6, diff --git a/src/views/NewPlatform/Children/AchDet.vue b/src/views/NewPlatform/Children/AchDet.vue index 982214b..00d1bf4 100644 --- a/src/views/NewPlatform/Children/AchDet.vue +++ b/src/views/NewPlatform/Children/AchDet.vue @@ -67,7 +67,7 @@ export default { return { typeOfPlatform: '成果详情', arr: [ - { name: '创新平台', url: '/NewPlatform/NewCore' }, + { name: '创新社区', url: '/NewPlatform/NewCore' }, { name: '创新资源平台', url: '/NewPlatform/News' }, { name: '知识产权与技术转移转化服务平台', url: '/NewPlatform/Transfer' }, { name: '成果详情', url: '' }, diff --git a/src/views/NewPlatform/Children/Community.vue b/src/views/NewPlatform/Children/Community.vue new file mode 100644 index 0000000..7c2bc50 --- /dev/null +++ b/src/views/NewPlatform/Children/Community.vue @@ -0,0 +1,47 @@ + + + + + + diff --git a/src/views/NewPlatform/Children/Core.vue b/src/views/NewPlatform/Children/Core.vue index 3a13229..7572310 100644 --- a/src/views/NewPlatform/Children/Core.vue +++ b/src/views/NewPlatform/Children/Core.vue @@ -82,9 +82,9 @@ export default { str: '这是中心界面', title: '创新平台-协同创新中心', title1: '创新平台-组织机构', - typeOfPlatform: '创新平台', + typeOfPlatform: '创新社区', arr: [ - { name: '创新平台', url: '/NewPlatform/NewCore' }, + { name: '创新社区', url: '/NewPlatform/NewCore' }, { name: '协同创新中心', url: '' }, ], showDiv: true, diff --git a/src/views/NewPlatform/Children/Develop.vue b/src/views/NewPlatform/Children/Develop.vue index 13bf525..d0cf00c 100644 --- a/src/views/NewPlatform/Children/Develop.vue +++ b/src/views/NewPlatform/Children/Develop.vue @@ -48,9 +48,9 @@ export default { data() { return { title: '知识培训与科技人才服务平台', - typeOfPlatform: '创新平台', + typeOfPlatform: '创新社区', arr: [ - { name: '创新平台', url: '/NewPlatform/NewCore' }, + { name: '创新社区', url: '/NewPlatform/NewCore' }, { name: '创新资源平台', url: '/NewPlatform/News' }, { name: '知识培训与科技人才服务平台', url: '' }, ], diff --git a/src/views/NewPlatform/Children/Platform.vue b/src/views/NewPlatform/Children/Platform.vue index 14710cc..9090e15 100644 --- a/src/views/NewPlatform/Children/Platform.vue +++ b/src/views/NewPlatform/Children/Platform.vue @@ -13,7 +13,7 @@
- +
@@ -54,9 +54,9 @@ export default { return { str: '这是政策界面', title: '创新资源平台', - typeOfPlatform: '创新平台', + typeOfPlatform: '创新社区', arr: [ - { name: '创新平台', url: '/NewPlatform/NewCore' }, + { name: '创新社区', url: '/NewPlatform/NewCore' }, { name: '创新资源平台', url: '' }, ], btnType: 'default', diff --git a/src/views/NewPlatform/Children/Service.vue b/src/views/NewPlatform/Children/Service.vue index c9056b3..60dc516 100644 --- a/src/views/NewPlatform/Children/Service.vue +++ b/src/views/NewPlatform/Children/Service.vue @@ -15,33 +15,41 @@
- +

{{ item.name }}

-
+ >{{ item.intro }}

--> +
{{ item.intro.slice(0,45) }} more -
- -
+ +

{{ item.intro }}

- -

{{ modelIntro }}

-
- - - - - - - - - - - - -
- - - 获取验证码 - -
-
- -
- - 重新发送 {{ interval }} - 获取验证码 -
-
- - - - - - - 点击上传附件 - - - -
-
+