add release v4.1.4

This commit is contained in:
RockYang
2024-09-20 15:50:04 +08:00
parent 32919de7a7
commit 5fa17b300e
12 changed files with 68 additions and 53 deletions

View File

@@ -8,7 +8,7 @@
import {ElConfigProvider} from 'element-plus';
import {onMounted} from "vue";
import {getSystemInfo} from "@/store/cache";
import {isChrome} from "@/utils/libs";
import {isChrome, isMobile} from "@/utils/libs";
import {showMessageInfo} from "@/utils/dialog";
const debounce = (fn, delay) => {
@@ -38,7 +38,7 @@ onMounted(() => {
link.href = res.data.logo
document.head.appendChild(link)
})
if (!isChrome()) {
if (!isChrome() && !isMobile()) {
showMessageInfo("检测到您使用的浏览器不是 Chrome可能会导致部分功能无法正常使用建议使用 Chrome 浏览器。")
}
})