<template>
|
<div class="external-notice">
|
<div class="notice-card">
|
<i class="el-icon-lock notice-icon"></i>
|
<h3 class="notice-title">外链公网访问</h3>
|
<p class="notice-text">当前为外链公网访问,不支持系统登录</p>
|
</div>
|
</div>
|
</template>
|
|
<script>
|
export default {
|
name: "LoginExternal",
|
};
|
</script>
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
.external-notice {
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
height: 100%;
|
overflow: hidden !important;
|
background-position: center center;
|
background-repeat: no-repeat;
|
background-attachment: fixed;
|
background-size: cover;
|
background-color: #464646;
|
background-image: url("../assets/images/login-background.jpg");
|
}
|
|
.notice-card {
|
border-radius: 6px;
|
background: #ffffff;
|
width: 400px;
|
padding: 50px 25px 45px 25px;
|
text-align: center;
|
}
|
|
.notice-icon {
|
font-size: 48px;
|
color: #3664d9;
|
margin-bottom: 20px;
|
}
|
|
.notice-title {
|
margin: 0 0 15px 0;
|
font-size: 20px;
|
font-weight: 600;
|
color: #303133;
|
}
|
|
.notice-text {
|
margin: 0;
|
font-size: 14px;
|
color: #909399;
|
}
|
</style>
|