VUE 写的 登录页面

请添加图片描述

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" xmlns:https="http://java.sun.com/JSP/Page"/>
<!doctype html>
<html>

<head>
  <title>Counter</title>
  <link rel="shortcut icon" href="favicon.png">
  <style>
    html {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    body {
      margin-top: 200px;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(to bottom right, #c165dd, #5c27f1);
      margin: 0;
    }

    .info-box{
      display: flex;
    }
    .form-signin {
      width: 1000px;
      margin-left: 100px;
      max-width: 600px;
      padding: 15px;
      margin: 0 auto;
      padding: 60px 80px;
    }

    .container {
      margin-top: 170px;
      height: 580px;
      padding-top: 50px;
      background-color: rgba(255,250,250,0.3);
      /*background-color: powderblue;*/
      width: auto;
    }

    .marginTop{
      margin-top: 5px;
    }

    .left-form{
      width: 800px;
      margin: 80px 90px;
    }

    /*横线*/
    .title-line{
      width: 980px;
      height: 28px;
      margin: 0 auto;
      border-bottom: 1px solid #ddd;
      margin-bottom: 28px;
      text-align: center;
    }
    /*竖线*/
    .line{
      border-right: 1px solid #ddd;
      height: 300px;
      margin-top: 28px;
    }


  </style>
  <link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css">
  <!--使用Bootstrap的js插件,必须先调入jQuery-->
  <script src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js"></script>
  <script src="https://unpkg.com/axios/dist/axios.min.js"></script>

  <!-- 包括所有bootstrap的js插件或者可以根据需要使用的js插件调用 -->
  <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/vue@2"></script>

  <meta name="viewport"
    content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />

</head>

<body>
  <div id="app" class="container">

    <div class="title-line">
    </div>

      <div class="info-box">
        <div class="left-form">
          <div>
            <li v-for="(log,i) in logArr" v-if="i<10">
              info : {{log}}
            </li>
          </div>
        </div>

        <div class="line"></div>

        <div class="right-form">
          <form class="form-signin">
            <input type="text" v-model="username" class="form-control marginTop" placeholder="用户" required autofocus>
            <input type="password" v-model="password" class="form-control marginTop" placeholder="密码" required>
            <input type="text" v-model="inputUrl" class="form-control marginTop" placeholder="站点URL" required>
            <input type="text" v-model="station" class="form-control marginTop" placeholder="站点编码" required>
            <button class="btn btn-success btn-lg btn-block marginTop" type="button" v-on:click="start">开始运行</button>
            <button class="btn btn-lg btn-primary btn-block marginTop"  type="button" v-on:click="stop">停止</button>
          </form>
        </div>
      </div>
    </div>

  </div>



  <script>

    var app = new Vue({
      el: '#app',
      data() {
        return {
          username: null,
          password: null,
          inputUrl:null,
          station: null,
          logArr: [],
          log: {},
          t1: null,
          logArrLength: 0,
          num:0
        }
      },
      // 在 `methods` 对象中定义方法
      methods: {
        stop: function () {
          window.clearInterval(this.t1);
          console.log(this.username, this.password, this.station);
        },
        start: function () {
          console.log("username-",this.username,"password-",this.password,"inputUrl-",this.inputUrl,"station-",this.station);
          this.t1 = window.setInterval(this.getMsg, 2000);
        },
        getMsg: function () {
          if(this.logArrLength<10){
            this.logArrLength +=1;
          }else{
            this.logArr.pop();
          }
          window.docheck();
          this.log = window.counterValue();
          window.counterValue().then(res => {
            this.log = res;
            this.logArr.unshift(this.log);
          });
        },
      }
    })

  </script>
</body>

</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值