fix:修改现场大屏登录是显示账号类型不匹配

This commit is contained in:
Vce 2024-06-19 20:23:36 +08:00
parent 53307b21cc
commit a278b720e5

View File

@ -123,7 +123,7 @@ const login = (formEl: FormInstance | undefined) => {
router.push("/agjtProjectKanban");
} else if (COMPANY === "agjtLive") {
router.push("/agjtLiveScreen");
if (![5, 10].includes(result.accountType)) {
if (![5, 10, 11].includes(result.accountType)) {
ElMessage({
message: "账号类型不匹配",
type: "warning"