diff --git a/src/common/platform.styl b/src/common/platform.styl index 1dab64c..c07ef2d 100644 --- a/src/common/platform.styl +++ b/src/common/platform.styl @@ -91,6 +91,7 @@ color: #000; } .bottom-content { + position: relative; float: right; margin: 100px 0; width: 79%; diff --git a/src/components/PlatformList/PlatformList.vue b/src/components/PlatformList/PlatformList.vue index d470f9f..03120d9 100644 --- a/src/components/PlatformList/PlatformList.vue +++ b/src/components/PlatformList/PlatformList.vue @@ -190,6 +190,7 @@ export default { params: { id: item.id, direction: item.direction, + name: item.name, }, }); } else if (this.listState === 1) { diff --git a/src/views/About/Children/Organ.vue b/src/views/About/Children/Organ.vue index 4fe43c9..340cffa 100644 --- a/src/views/About/Children/Organ.vue +++ b/src/views/About/Children/Organ.vue @@ -36,9 +36,7 @@ export default { //一定一定要注意这里有[] name: '绿谷公司', children: [ - { - name: '行政事业部', - }, + { name: '行政事业部' }, { name: '创新事业部', children: [ diff --git a/src/views/IncubationPlatform/Children/place/EntitySpace.vue b/src/views/IncubationPlatform/Children/place/EntitySpace.vue index 06da41f..84262e0 100644 --- a/src/views/IncubationPlatform/Children/place/EntitySpace.vue +++ b/src/views/IncubationPlatform/Children/place/EntitySpace.vue @@ -46,7 +46,7 @@ 食品检测、食用菌、肠道微生物等方面的科学实验、检验检测、小试中试等技术服务与科研成果转化。
- +
@@ -260,14 +260,11 @@ export default { color: rgba(0, 0, 0, 0.65); opacity: 1; overflow: hidden; - display: -webkit-box; - -webkit-line-clamp: 1; - -webkit-box-orient: vertical; } .ent-mainBusiness { position: absolute; - left: 35%; + left: 60%; width: 20%; height: 24px; top: 50%; @@ -279,9 +276,6 @@ export default { color: rgba(0, 0, 0, 0.65); opacity: 1; overflow: hidden; - display: -webkit-box; - -webkit-line-clamp: 1; - -webkit-box-orient: vertical; } .reg-box { diff --git a/src/views/NewPlatform/Children/Core.vue b/src/views/NewPlatform/Children/Core.vue index 3ee023e..ab5b399 100644 --- a/src/views/NewPlatform/Children/Core.vue +++ b/src/views/NewPlatform/Children/Core.vue @@ -31,6 +31,9 @@
+
科技资源共享服务平台
+
知识产权与技术转移转化服务平台
+
知识培训服务平台
+ + + + + + + + + + + + +
+ + + 获取验证码 + +
+
+ +
+ + 重新发送 {{ interval }} + + 获取验证码 + +
+
+ + + + + + 点击上传附件 + + +
+
diff --git a/src/views/NewPlatform/Children/ShareChild/Institute.vue b/src/views/NewPlatform/Children/ShareChild/Institute.vue index 238231f..14c8f58 100644 --- a/src/views/NewPlatform/Children/ShareChild/Institute.vue +++ b/src/views/NewPlatform/Children/ShareChild/Institute.vue @@ -6,7 +6,7 @@
-

研究院介绍

+

{{ shareName }}

{{ direction }}

设备列表

@@ -100,6 +100,7 @@ export default { obj: null, list: [], direction: '', + shareName: '', }; }, computed: mapState('home', ['LabId']), @@ -113,6 +114,9 @@ export default { if (this.$route.params.direction) { this.direction = this.$route.params.direction; } + if (this.$route.params.name) { + this.shareName = this.$route.params.name; + } this.getData(); this.getTeam(); },