diff --git a/src/views/system/application/pluginMarket.vue b/src/views/system/application/pluginMarket.vue index 53c7d07..3cfb116 100644 --- a/src/views/system/application/pluginMarket.vue +++ b/src/views/system/application/pluginMarket.vue @@ -1,9 +1,9 @@ @@ -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; } diff --git a/src/views/system/application/popInfo.vue b/src/views/system/application/popInfo.vue index 2c345cf..f8665ab 100644 --- a/src/views/system/application/popInfo.vue +++ b/src/views/system/application/popInfo.vue @@ -50,8 +50,8 @@ {{ item.author }} -
-
+
+
数据表
{{ item.tables }}
@@ -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%; }