From aee64459edc5d7b07b90c02852bf580bba3fe799 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 6 Jan 2021 17:13:05 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E6=96=B0=E5=B9=B3=E5=8F=B0=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/platform.styl | 21 ++ src/components/Introduce/CompanyProfile.vue | 4 +- src/components/PlatformList/Fruit.vue | 18 +- src/components/PlatformList/PlatformList.vue | 155 ++++++++----- src/config/api.js | 8 + src/router/index.js | 17 ++ src/store/modules/home/mutations.js | 30 +++ src/store/modules/home/state.js | 3 + src/views/About/Children/SpinOffs.vue | 2 +- src/views/NewPlatform/Children/Service.vue | 68 +++++- src/views/NewPlatform/Children/ServiceDet.vue | 23 ++ src/views/NewPlatform/Children/Share.vue | 34 ++- .../Children/ShareChild/InsDet.vue | 140 ++++++++++++ .../Children/ShareChild/Institute.vue | 209 ++++++++++++++++++ src/views/NewPlatform/components/HNav.vue | 2 + 15 files changed, 664 insertions(+), 70 deletions(-) create mode 100644 src/views/NewPlatform/Children/ServiceDet.vue create mode 100644 src/views/NewPlatform/Children/ShareChild/InsDet.vue create mode 100644 src/views/NewPlatform/Children/ShareChild/Institute.vue diff --git a/src/common/platform.styl b/src/common/platform.styl index 5d7c37d..d464bb5 100644 --- a/src/common/platform.styl +++ b/src/common/platform.styl @@ -152,3 +152,24 @@ font-size: 16px; color: rgba(0,0,0,0.65); } +.flow-path { + background: -webkit-linear-gradient(left, #13ACC4 , #fff); + padding: 80px 9%; + position: relative; +} +.flow-title { + position: absolute; + top: 40%; + font-size: 30px; + color: #fff; +} +.flow-content { + margin-left: 20%; + width:30%; + font-size: 16px; + color: #fff; +} +.login-color { + color: #096DD9; + cursor: pointer; +} diff --git a/src/components/Introduce/CompanyProfile.vue b/src/components/Introduce/CompanyProfile.vue index 6960334..61aacd3 100644 --- a/src/components/Introduce/CompanyProfile.vue +++ b/src/components/Introduce/CompanyProfile.vue @@ -24,9 +24,7 @@ export default { }, data() { - return { - ModalText: 'Content of the modal', - }; + return { ModalText: 'Content of the modal', }; }, computed: mapState('home', ['profile']), diff --git a/src/components/PlatformList/Fruit.vue b/src/components/PlatformList/Fruit.vue index 8801fa0..10059c0 100644 --- a/src/components/PlatformList/Fruit.vue +++ b/src/components/PlatformList/Fruit.vue @@ -1,7 +1,7 @@