Browse Source

home: feat> 卡片样式调整

haojianlong 4 years ago
parent
commit
4e9da0d9d9
3 changed files with 39 additions and 17 deletions
  1. BIN
      src/assets/images/noImg.png
  2. 6 3
      src/components/homeView/topoImageCard.vue
  3. 33 14
      src/views/home.vue

BIN
src/assets/images/noImg.png


+ 6 - 3
src/components/homeView/topoImageCard.vue

@@ -1,8 +1,10 @@
 <!--拓扑图缩略图卡片-->
 <template>
   <el-card :class="{'box-card': true, 'active': data.checked}" shadow="hover" :body-style="{ padding: '0px' }">
-    <img class="image"
-      :src="data.pic?`/image-service/common/image_get?systemId=dataPlatform&key=${data.pic}`:require('@/assets/images/leftImgs/EditBaseImage.png')">
+    <div class="image" v-if="!data.pic" style="line-height: 120px;text-align: center;">
+      <img :src="require('@/assets/images/noImg.png')" style="height:96px;">
+    </div>
+    <img class="image" v-else :src="`/image-service/common/image_get?systemId=dataPlatform&key=${data.pic}`">
     <div class="shadow image" v-if="!isRecycle" @click="toEdit">
       <el-checkbox v-model="data.checked" class="shadowCheck" @change="changeCheck"></el-checkbox>
     </div>
@@ -131,9 +133,10 @@ export default {
     }
   }
   .image {
+    display: block;
     width: 100%;
     height: 120px;
-    display: block;
+    background-color: #f7f9fa;
   }
   .shadow {
     display: none;

+ 33 - 14
src/views/home.vue

@@ -41,14 +41,28 @@
             <i class="el-icon-close" style="float:right;line-height: 28px;margin-right: 5px;" @click="handleCheckAllChange(false)"></i>
           </div>
         </div>
-        <div class="main-body" :class="{'no-data': !cardList.length}">
-          <template v-for="t in cardList">
-            <topoImageCard :isPub="isPub" :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
-              @delete="deleteGraph" @editTag="editTag"></topoImageCard>
-          </template>
-          <div v-if="!cardList.length" style="margin-top: 112px;">
-            <img src="./../assets/images/no-data.png" alt="" style="width: 116px;height:116px;">
-            <p style="font-size: 16px;margin-top: 15px;text-align:center;">暂无数据</p>
+        <div class="main-body">
+          <div class="has-data-body" v-if="cardList.length">
+            <template v-for="t in cardList">
+              <topoImageCard :isPub="isPub" :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
+                @delete="deleteGraph" @editTag="editTag"></topoImageCard>
+            </template>
+            <template v-for="t in cardList">
+              <topoImageCard :isPub="isPub" :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
+                @delete="deleteGraph" @editTag="editTag"></topoImageCard>
+            </template>
+            <template v-for="t in cardList">
+              <topoImageCard :isPub="isPub" :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
+                @delete="deleteGraph" @editTag="editTag"></topoImageCard>
+            </template>
+            <template v-for="t in cardList">
+              <topoImageCard :isPub="isPub" :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
+                @delete="deleteGraph" @editTag="editTag"></topoImageCard>
+            </template>
+          </div>
+          <div class="no-data-body" v-else style="margin-top: 112px;">
+            <img src="@/assets/images/no-data.png" style="width: 116px;height:116px;">
+            <p style="font-size: 16px;margin-top: 15px;">暂无数据</p>
           </div>
         </div>
       </el-main>
@@ -269,7 +283,7 @@ export default {
   }
   .bodys {
     width: 100%;
-    height: 100%;
+    height: calc(100% - 60px);
     .aside {
       .recycle {
         line-height: 48px;
@@ -335,12 +349,17 @@ export default {
         }
       }
       .main-body {
-        display: flex;
-        flex-wrap: wrap;
+        display: block;
         height: calc(100% - 51px);
-        &.no-data {
-          justify-content: center;
-          // align-items: center;
+        overflow: auto;
+        & > div {
+          display: flex;
+          flex-wrap: wrap;
+        }
+        .no-data-body {
+          flex-direction: column;
+          // justify-content: center;
+          align-items: center;
         }
       }
     }