no message

This commit is contained in:
小陌 2023-09-05 23:11:14 +08:00
parent e677ae85ab
commit a3f53dd04c
2 changed files with 18 additions and 7 deletions

View File

@ -1,9 +1,9 @@
<template>
<div class="dis-f warp pd-15 pos-r" ref="tabBox">
<div class="dis-f warp pd-15 pos-r" ref="tabBox" v-loading="loading">
<div class="pop-box" v-show="popShow">
<pop-info :showPop="closePlugin" :item="info"></pop-info>
</div>
<plugin-box @click="installPlugin(item)" :windowType="windowType" :tabI="i" :item="item" v-for="(item, i) in list" :key="i"></plugin-box>
<plugin-box @click="installPlugin(item)" :windowType="windowType" :tabI="i" :item="item" v-for="(item, i) in list" :key="i"></plugin-box>
</div>
</template>
@ -23,6 +23,7 @@ export default {
list: [],
tabBox: null,
popShow: false,
loading: false,
resize: null,
info: {},
}
@ -50,7 +51,9 @@ export default {
this.resize.unobserve(this.tabBox)
},
loaddata(){
this.loading = true;
this.$http.get('admin/application/lists').then((res) => {
this.loading = false;
if (res.code == 200) {
this.list = res.data;
}

View File

@ -50,8 +50,8 @@
{{ item.author }}
</div>
</div>
<div class="line"></div>
<div class="box">
<div class="line" v-if="item.tables"></div>
<div class="box" v-if="item.tables">
<div style="margin-bottom:8px;">数据表</div>
<div class="dis-f" style="flex-wrap: wrap;">
<div class="business-type">{{ item.tables }}</div>
@ -204,7 +204,7 @@ img {
}
.related-details .line {
height: 76px;
height: 60px;
margin: 0 20px;
background: #ebecee;
width: 1px;
@ -226,7 +226,8 @@ img {
font-size: 14px;
word-wrap: break-word;
max-width: 100%;
height: calc(100% - 320px);
height: calc(100% - 305px);
overflow: hidden;
}
.info-video {
@ -310,7 +311,7 @@ img {
}
.info-data-box {
padding: 40px;
padding: 20px 40px;
flex: 1;
max-width: 1200px;
width: 100%;
@ -380,6 +381,7 @@ img {
.info-data-box{
padding: 10px;
}
}
@media screen and (max-width:550px) {
@ -389,6 +391,12 @@ img {
align-items: center;
}
.plugin-introduce {
height: calc(100% - 558px);
padding: 0 10px;
}
.info-video {
width: 100%;
}