hookehuyr

fix loading功能调整

...@@ -77,6 +77,7 @@ ...@@ -77,6 +77,7 @@
77 :model="state.detailModel" 77 :model="state.detailModel"
78 label-position="top" 78 label-position="top"
79 label-width="100px" 79 label-width="100px"
80 + style="position: relative;"
80 > 81 >
81 <!-- <template v-if="state.detailModel.activity === undefined"> --> 82 <!-- <template v-if="state.detailModel.activity === undefined"> -->
82 <el-tabs 83 <el-tabs
...@@ -287,6 +288,12 @@ ...@@ -287,6 +288,12 @@
287 </el-select> 288 </el-select>
288 </el-form-item> --> 289 </el-form-item> -->
289 <!-- </template> --> 290 <!-- </template> -->
291 + <div v-if="state.statusLoading" style="position: absolute; top: 0; right: 0;background-color: rgba(255, 255, 255, 0.5);width: 100%; height: 100%; z-index: 2006;">
292 + <div class="el-loading-spinner">
293 + <svg class="circular" viewBox="0 0 50 50"><circle class="path" cx="25" cy="25" r="20" fill="none"></circle></svg>
294 + <p class="el-loading-text">加载中</p>
295 + </div>
296 + </div>
290 </el-form> 297 </el-form>
291 </template> 298 </template>
292 <!-- 工具栏 --> 299 <!-- 工具栏 -->
...@@ -339,13 +346,6 @@ ...@@ -339,13 +346,6 @@
339 @close="onCloseUserView" 346 @close="onCloseUserView"
340 @confirm="onConfirmUserView" 347 @confirm="onConfirmUserView"
341 /> 348 />
342 -
343 - <div v-if="state.statusLoading" class="el-loading-mask is-fullscreen" style="background-color: rgba(f, f, f, 0.7); z-index: 2006;">
344 - <div class="el-loading-spinner">
345 - <svg class="circular" viewBox="0 0 50 50"><circle class="path" cx="25" cy="25" r="20" fill="none"></circle></svg>
346 - <p class="el-loading-text">加载中</p>
347 - </div>
348 - </div>
349 </template> 349 </template>
350 350
351 <script lang="ts"> 351 <script lang="ts">
......