提交 d674c8fa authored 作者: lidongxu's avatar lidongxu

style(table): 修复:表格加载蒙层覆盖到其他蒙层的问题

上级 75a30ce6
...@@ -46,6 +46,11 @@ ...@@ -46,6 +46,11 @@
} }
} }
// 重写 el-table 的 loading-mask 加载进度蒙层
.el-loading-mask{
z-index: 1 !important;
}
// to fixed https://github.com/ElemeFE/element/issues/2461 // to fixed https://github.com/ElemeFE/element/issues/2461
// 重写 dialog 样式,默认居中显示 // 重写 dialog 样式,默认居中显示
.el-overlay-dialog { .el-overlay-dialog {
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<div class="right-menu"> <div class="right-menu">
<template v-if="appStore.device !== 'mobile'"> <template v-if="appStore.device !== 'mobile'">
<!-- 新版本 --> <!-- 新版本 -->
<!-- <div class="right-menu-item hover-effect new-version" <div class="right-menu-item hover-effect new-version"
@click="showVersionFn"> @click="showVersionFn">
<svg-icon icon-class="new-version" /> <svg-icon icon-class="new-version" />
</div> </div>
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<version-notice v-model="showVersionNoticeVisible" <version-notice v-model="showVersionNoticeVisible"
:nowVersion="nowVersion" :nowVersion="nowVersion"
:versionList="showVersionList" :versionList="showVersionList"
@confirm="saveNowVersion" /> --> @confirm="saveNowVersion" />
<header-search id="header-search" <header-search id="header-search"
class="right-menu-item" /> class="right-menu-item" />
...@@ -107,12 +107,12 @@ const nowVersion = ref('') // 当前最新版本 ...@@ -107,12 +107,12 @@ const nowVersion = ref('') // 当前最新版本
// 判断是否有新版本出现 // 判断是否有新版本出现
onMounted(() => { onMounted(() => {
// const oldVersion = proxy.$cache.local.get('version') const oldVersion = proxy.$cache.local.get('version')
// const versionObj = versionStore.version[0] const versionObj = versionStore.version[0]
// nowVersion.value = versionObj.version nowVersion.value = versionObj.version
// if (oldVersion !== nowVersion.value) { if (oldVersion !== nowVersion.value) {
// handleVersionList() handleVersionList()
// } }
}) })
// 展示版本通知弹框 // 展示版本通知弹框
const showVersionFn = () => { const showVersionFn = () => {
......
...@@ -81,7 +81,6 @@ service.interceptors.request.use(config => { ...@@ -81,7 +81,6 @@ service.interceptors.request.use(config => {
// 响应拦截器 // 响应拦截器
service.interceptors.response.use(async res => { service.interceptors.response.use(async res => {
console.log('响应', res)
// 未设置状态码则默认成功状态 // 未设置状态码则默认成功状态
const code = res.data.code || 200; const code = res.data.code || 200;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论