vue2-client 1.8.53 → 1.8.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.8.53",
3
+ "version": "1.8.54",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -53,6 +53,7 @@ export default {
53
53
  margin-top: 20px;
54
54
  }
55
55
  .data-content {
56
+ height: 100%;
56
57
  background-color: #fff;
57
58
  padding: 20px;
58
59
  border-radius: 8px;
@@ -26,7 +26,7 @@
26
26
  </question-history-and-favorites>
27
27
  </a-col>
28
28
  <a-col :span="18" style="height:100%">
29
- <a-spin :spinning="loading" tip="正在努力加载...">
29
+ <a-spin :spinning="loading" tip="正在努力加载..." wrapperClassName="spingclass">
30
30
  <!-- 数据展示Tabs -->
31
31
  <data-tabs
32
32
  ref="tabs"
@@ -186,7 +186,7 @@ export default {
186
186
  .data-main-card {
187
187
  //width: 75%;
188
188
  height: 79%;
189
- padding: 30px 20px 20px 20px;
189
+ padding: 40px 25px 20px 25px;
190
190
  background-color: #f5f7fb;
191
191
  }
192
192
 
@@ -199,4 +199,10 @@ export default {
199
199
  background-color: rgba(#4F93FE, 0.8) // 这里设置蓝色蒙版的颜色和透明度
200
200
  }
201
201
  }
202
+ .spingclass {
203
+ height: 100%;
204
+ }
205
+ :deep(.ant-spin-container){
206
+ height: 100%;
207
+ }
202
208
  </style>