123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- <!--
- 描述: 登录模板
- 作者: Jack Chen
- 日期: 2020-04-18
- -->
- <template>
- <div class="login-container">
- <div class="layer">
- <div class="some-space">
- <div class="form">
- <h2>大数据可视化平台</h2>
- <div class="item">
- <i class="iconfont icon-user"></i>
- <input
- autocomplete="off"
- type="text"
- class="input"
- v-model="userName"
- placeholder="请输入用户名"
- />
- </div>
- <div class="item">
- <i class="iconfont icon-password"></i>
- <input
- autocomplete="off"
- type="password"
- class="input"
- v-model="userPwd"
- maxlength="20"
- @keyup.enter="login"
- placeholder="请输入密码"
- />
- </div>
- <button class="loginBtn" :disabled="isLoginAble" @click.stop="login">
- 立即登录
- </button>
- <div class="tip">默认用户名:admin ,默认密码:123456</div>
- </div>
- </div>
- </div>
- <vue-particles
- color="#6495ED"
- :particleOpacity="0.7"
- :particlesNumber="80"
- shapeType="circle"
- :particleSize="4"
- linesColor="#6495ED"
- :linesWidth="1"
- :lineLinked="true"
- :lineOpacity="0.6"
- :linesDistance="150"
- :moveSpeed="3"
- :hoverEffect="true"
- hoverMode="grab"
- :clickEffect="true"
- clickMode="push"
- >
- </vue-particles>
- <bgAnimation />
- <modal
- title="提示"
- :content="modalContent"
- :visible.sync="visible"
- @confirm="confirm"
- >
- </modal>
- </div>
- </template>
- <script>
- export default {
- name: `Login`,
- components: {},
- data() {
- return {
- userName: `admin`,
- userPwd: `123456`,
- visible: false,
- modalContent: `这是一段自定义模态框消息`,
- }
- },
- computed: {
- isLoginAble() {
- return !(this.userName && this.userPwd)
- },
- },
- created() {},
- mounted() {},
- methods: {
- login() {
- if (this.userName == `admin` && this.userPwd == `123456`) {
- this.$router.push({
- path: `/page1`,
- })
- } else {
- this.$Toast({
- content: `请输入正确的用户名和密码`,
- type: `error`,
- // hasClose: true
- })
- }
- },
- confirm() {
- this.visible = false
- console.log(`点击确定`)
- },
- },
- }
- </script>
- <style lang="less" scoped>
- .login-container {
- .layer {
- position: absolute;
- height: 100%;
- width: 100%;
- }
- #particles-js {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 1000;
- }
- .some-space {
- color: white;
- font-weight: 100;
- letter-spacing: 2px;
- position: absolute;
- top: 50%;
- left: 50%;
- z-index: 1001;
- -webkit-transform: translate3d(-50%, -50%, 0);
- transform: translate3d(-50%, -50%, 0);
- -ms-animation: cloud 2s 3s ease-in infinite alternate;
- -moz-animation: cloud 2s 3s ease-in infinite alternate;
- -webkit-animation: cloud 2s 3s ease-in infinite alternate;
- -o-animation: cloud 2s 3s ease-in infinite alternate;
- -webkit-animation: cloud 2s 3s ease-in infinite alternate;
- animation: cloud 2s 3s ease-in infinite alternate;
- .form {
- width: 460px;
- height: auto;
- background: rgba(36, 36, 85, 0.5);
- margin: 0 auto;
- padding: 35px 30px 25px;
- box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
- border-radius: 10px;
- .item {
- display: flex;
- align-items: center;
- margin-bottom: 25px;
- border-bottom: 1px solid #d3d7f7;
- i {
- color: #d3d7f7;
- margin-right: 10px;
- }
- }
- h2 {
- text-align: center;
- font-weight: normal;
- font-size: 26px;
- color: #d3d7f7;
- padding-bottom: 35px;
- }
- .input {
- font-size: 16px;
- line-height: 30px;
- width: 100%;
- color: #d3d7f7;
- outline: none;
- border: none;
- background-color: rgba(0, 0, 0, 0);
- padding: 10px 0;
- }
- .loginBtn {
- width: 100%;
- padding: 12px 0;
- border: 1px solid #d3d7f7;
- font-size: 16px;
- color: #d3d7f7;
- cursor: pointer;
- background: transparent;
- border-radius: 4px;
- margin-top: 10px;
- &:hover {
- color: #fff;
- background: #0090ff;
- border-color: #0090ff;
- }
- }
- .tip {
- font-size: 12px;
- padding-top: 20px;
- }
- }
- }
- }
- input::-webkit-input-placeholder {
- color: #d3d7f7;
- }
- input::-moz-placeholder {
- /* Mozilla Firefox 19+ */
- color: #d3d7f7;
- }
- input:-moz-placeholder {
- /* Mozilla Firefox 4 to 18 */
- color: #d3d7f7;
- }
- input:-ms-input-placeholder {
- /* Internet Explorer 10-11 */
- color: #d3d7f7;
- }
- @-ms-keyframes cloud {
- 0% {
- -ms-transform: translate(-50%, -50%);
- }
- 40% {
- opacity: 1;
- }
- 60% {
- opacity: 1;
- }
- 100% {
- -ms-transform: translate(-50%, -40%);
- }
- }
- @-moz-keyframes cloud {
- 0% {
- -moz-transform: translate(-50%, -50%);
- }
- 40% {
- opacity: 1;
- }
- 60% {
- opacity: 1;
- }
- 100% {
- -moz-transform: translate(-50%, -40%);
- }
- }
- @-o-keyframes cloud {
- 0% {
- -o-transform: translate(-50%, -50%);
- }
- 40% {
- opacity: 1;
- }
- 60% {
- opacity: 1;
- }
- 100% {
- -o-transform: translate(-50%, -40%);
- }
- }
- @-webkit-keyframes cloud {
- 0% {
- -webkit-transform: translate(-50%, -50%);
- }
- 40% {
- opacity: 1;
- }
- 60% {
- opacity: 1;
- }
- 100% {
- -webkit-transform: translate(-50%, -40%);
- }
- }
- @keyframes cloud {
- 0% {
- transform: translate(-50%, -50%);
- }
- 40% {
- opacity: 1;
- }
- 60% {
- opacity: 1;
- }
- 100% {
- transform: translate(-50%, -40%);
- }
- }
- </style>
|