|
@@ -41,14 +41,28 @@
|
|
<i class="el-icon-close" style="float:right;line-height: 28px;margin-right: 5px;" @click="handleCheckAllChange(false)"></i>
|
|
<i class="el-icon-close" style="float:right;line-height: 28px;margin-right: 5px;" @click="handleCheckAllChange(false)"></i>
|
|
</div>
|
|
</div>
|
|
</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>
|
|
</div>
|
|
</div>
|
|
</el-main>
|
|
</el-main>
|
|
@@ -269,7 +283,7 @@ export default {
|
|
}
|
|
}
|
|
.bodys {
|
|
.bodys {
|
|
width: 100%;
|
|
width: 100%;
|
|
- height: 100%;
|
|
|
|
|
|
+ height: calc(100% - 60px);
|
|
.aside {
|
|
.aside {
|
|
.recycle {
|
|
.recycle {
|
|
line-height: 48px;
|
|
line-height: 48px;
|
|
@@ -335,12 +349,17 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.main-body {
|
|
.main-body {
|
|
- display: flex;
|
|
|
|
- flex-wrap: wrap;
|
|
|
|
|
|
+ display: block;
|
|
height: calc(100% - 51px);
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|