hookehuyr

fix loading功能调整

......@@ -77,6 +77,7 @@
:model="state.detailModel"
label-position="top"
label-width="100px"
style="position: relative;"
>
<!-- <template v-if="state.detailModel.activity === undefined"> -->
<el-tabs
......@@ -287,6 +288,12 @@
</el-select>
</el-form-item> -->
<!-- </template> -->
<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;">
<div class="el-loading-spinner">
<svg class="circular" viewBox="0 0 50 50"><circle class="path" cx="25" cy="25" r="20" fill="none"></circle></svg>
<p class="el-loading-text">加载中</p>
</div>
</div>
</el-form>
</template>
<!-- 工具栏 -->
......@@ -339,13 +346,6 @@
@close="onCloseUserView"
@confirm="onConfirmUserView"
/>
<div v-if="state.statusLoading" class="el-loading-mask is-fullscreen" style="background-color: rgba(f, f, f, 0.7); z-index: 2006;">
<div class="el-loading-spinner">
<svg class="circular" viewBox="0 0 50 50"><circle class="path" cx="25" cy="25" r="20" fill="none"></circle></svg>
<p class="el-loading-text">加载中</p>
</div>
</div>
</template>
<script lang="ts">
......