WXL (wul)
4 小时以前 ae8535b861f9177508d9e5493e0fe9e47978c915
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<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>