强制使用谷歌或者火狐浏览器

This commit is contained in:
guoyue 2022-09-13 18:04:33 +08:00
parent fb0a5e1f38
commit 0661a53d79
1 changed files with 9 additions and 7 deletions

View File

@ -22,9 +22,9 @@
</a-input>
</a-form-item>
<a-form-item>
<!-- IE Chrome -->
<!-- IE Chrome || judgeAgent() !== 'Chrome'-->
<a-button type="primary" html-type="submit"
:disabled="form.username === '' || form.password === '' || judgeAgent() !== 'Chrome'">
:disabled="form.username === '' || form.password === '' || !canOpen.includes(judgeAgent())">
登录
</a-button>
</a-form-item>
@ -57,6 +57,9 @@ export default {
redirect: undefined,
dependencies: dependencies,
devDependencies: devDependencies,
is360: false,
isIE: false,
canOpen: ['FF', 'Chrome']
}
},
computed: {
@ -76,13 +79,11 @@ export default {
mounted() {
this.form.username = ''
this.form.password = ''
/* setTimeout(() => {
this.handleSubmit()
}, 3000) */
if (this.judgeAgent() !== 'Chrome') {
if (!this.canOpen.includes(this.judgeAgent())) {
Modal.warning({
title: '提示',
content: '请使用谷歌浏览器!',
content: '请使用谷歌或火狐浏览器!',
});
}
},
@ -93,6 +94,7 @@ export default {
//
judgeAgent() {
let userAgent = navigator.userAgent // userAgent
console.log('userAgent------------>', userAgent);
let isOpera = userAgent.indexOf('Opera') > -1
//Opera
if (isOpera) {