|
@@ -226,6 +226,10 @@ const toIndex = () => {
|
|
|
|
|
|
//退出
|
|
|
function logout() {
|
|
|
+ setTimeout(() => {
|
|
|
+ var el = document.querySelector(".is-message-box");
|
|
|
+ el.style.zIndex = 9999999;
|
|
|
+ }, 200);
|
|
|
ElMessageBox.confirm("确定注销并退出系统吗?", "提示", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
@@ -240,13 +244,6 @@ function logout() {
|
|
|
});
|
|
|
})
|
|
|
.catch(() => {});
|
|
|
- var el = document.querySelector(".is-message-box");
|
|
|
-
|
|
|
- if (el) {
|
|
|
- el.style.zIndex = "888888";
|
|
|
- // console.log('el',el);
|
|
|
- // console.log('el',el.style.zIndex);
|
|
|
- }
|
|
|
}
|
|
|
//获取扫描仪列表
|
|
|
const scannerFile = async () => {
|