You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@linkis.apache.org by pe...@apache.org on 2021/10/21 08:59:35 UTC

[incubator-linkis-website] 30/43: FIX DETAIL

This is an automated email from the ASF dual-hosted git repository.

peacewong pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-linkis-website.git

commit 78bd36ebb3092208f67e1d1c8f02e5b5beea6404
Author: lucaszhu <lu...@webank.com>
AuthorDate: Mon Oct 18 10:54:47 2021 +0800

    FIX DETAIL
---
 src/App.vue              |  7 +++++++
 src/pages/home/index.vue |  4 +++-
 src/pages/team/team.vue  | 12 ++++--------
 3 files changed, 14 insertions(+), 9 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index f777ea6..36766e8 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -74,6 +74,7 @@
                         <a href="http://www.apache.org/foundation/thanks.html" class="links-item">{{$t('menu.links.thanks')}}</a>
                     </div>
                 </div>
+                <img src="./assets/image/incubator-logo.png" alt="incubator-logo" class="incubator-logo">
                 <p class="footer-desc">Apache Linkis (Incubating) is an effort undergoing incubation at The Apache
                     Software Foundation, sponsored by the Apache Incubator. Incubation is required of all newly accepted
                     projects until a further review indicates that the infrastructure, communications, and decision
@@ -202,6 +203,12 @@
         padding-top: 40px;
         background: #F9FAFB;
 
+        .incubator-logo {
+            height: 44px;
+            margin-left: 20px;
+            margin-bottom: 20px;
+        }
+
         .footer-desc {
             padding: 0 20px 30px;
             color: #999999;
diff --git a/src/pages/home/index.vue b/src/pages/home/index.vue
index 07205ba..a619193 100644
--- a/src/pages/home/index.vue
+++ b/src/pages/home/index.vue
@@ -145,11 +145,13 @@
       grid-row-gap: 20px;
       grid-column-gap: 20px;
       .case-item{
+        display: flex;
+        min-width: 0;
         height: 88px;
-        width:167px;
         background: #FFFFFF;
         box-shadow: 0 1px 20px 0 rgba(15,18,34,0.10);
         border-radius: 8px;
+        align-content: center
       }
     }
     .features{
diff --git a/src/pages/team/team.vue b/src/pages/team/team.vue
index 1dd51a1..eb53843 100644
--- a/src/pages/team/team.vue
+++ b/src/pages/team/team.vue
@@ -1,20 +1,16 @@
 <template>
   <div class="ctn-block team-page">
-    <p>
-      {{jsonData.info.desc}}
-    </p>
-
     <h3 class="team-title">PMC</h3>
-<!--    <p class="team-desc">Use the links below to download the Apache Linkis (Incubating) Releases. See all Linkis releases in Github release page.</p>-->
+    <p class="team-desc">{{jsonData.info.desc}}</p>
     <ul  class="character-list">
-      <li v-for="item in jsonData.list" class="character-item text-center">
+      <li v-for="(item,index) in jsonData.list" :key="index" class="character-item text-center">
         <img class="character-avatar" :src="item.avatarUrl" :alt="item.name"/>
         <div class="character-desc">
-          <h3 class="character-name"><a href="{{utils.concatStr('https://github.com/','',item.githubId)}}" class="character-name">{{item.name}}</a></h3>
+          <h3 class="character-name"><a :href="'https://github.com/'+ item.githubId" class="character-name" target="_blank">{{item.name}}</a></h3>
         </div>
       </li>
     </ul>
-    <p v-html="jsonData.info.tip"></p>
+    <p class="team-desc" v-html="jsonData.info.tip"></p>
     <!--   <h3 class="team-title">Contributors</h3>
      <p class="team-desc">Use the links below to download the Apache Linkis (Incubating) Releases. See all Linkis releases in Github release page.</p>
     ]<ul class="contributor-list">

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@linkis.apache.org
For additional commands, e-mail: commits-help@linkis.apache.org