vue2-client 1.8.52 → 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
|
@@ -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:
|
|
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>
|