no message
This commit is contained in:
parent
e677ae85ab
commit
a3f53dd04c
@ -1,5 +1,5 @@
|
||||
<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>
|
||||
@ -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;
|
||||
}
|
||||
|
@ -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%;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user