cnf
13 小时以前 f9ca2c54d51a1080ba45bf6761e0596fb7e14ffa
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="fjLogin.aspx.cs" Inherits="BaoGong_fjLogin" %>
<html>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
    <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;" name="viewport" />
    <link rel="icon" href="/BaoGong/images/favicon.png" type="image/png">
    <title><%= System.Configuration.ConfigurationManager.AppSettings["webTitle"].ToString() %></title>
    <link href="/BaoGong/images/fj.css?<%=123321%>" rel="stylesheet" />
 <style>
     .van-number-keyboard {
        padding-bottom:0px !important;
        color:#000000;
     }
     .van-key {
         max-height:0.76rem;
     }
 </style>
</head>
<body >
    <div id="app" class="text-center" v-cloak>
        <div class="padding-lg" style="max-width:7.5rem;margin:auto">
             <div class="font-lg padding-lg margin"><%= System.Configuration.ConfigurationManager.AppSettings["webTitle"].ToString() %></div>
             <div class="bg-transparent">
                <van-form @submit="onSubmit" :show-error="false"  class="padding-xl-top padding-xl-bottom">
                  <van-cell-group inset>
                    <van-field
                      v-model="formCustom.phone"
                      name="phone"
                      label=""
                      placeholder="请输入账号"
                      :rules="[{ required: true, message: '请输入账号' }]"
                      @touchstart.native.stop="showPhone = true"
                      readonly 
                    ></van-field>
                    <van-field
                      v-model="formCustom.passwd"
                      type="password"
                      name="password"
                      label=""
                      placeholder="请输入密码"
                      :rules="[{ required: true, message: '请输入密码' }]"
                       @touchstart.native.stop="showPassword = true"
                        readonly 
                    ></van-field>
                  </van-cell-group>
                  <div style="margin: 0.17rem 0.32rem 0px 0.32rem;">
                    <van-button round block type="info" native-type="submit" :loading="isLoading">
                      马上登录
                    </van-button>
                  </div>
                </van-form>
                 <van-number-keyboard
                  v-model="formCustom.phone"
                  :show="showPhone"
                  @blur="showPhone = false"
                   theme="custom"
                     extra-key="."
                     close-button-text="完成"
                ></van-number-keyboard>
                    <van-number-keyboard
                    v-model="formCustom.passwd"
                    :show="showPassword"
                    @blur="showPassword = false"
                     theme="custom"
                     extra-key="."
                     close-button-text="完成"
                  ></van-number-keyboard>
          </div>
        </div>
    </div>
    <div>
    <script src="/BaoGong/Scripts/lib-flexible-master/flexible.js?<%=WebApp.Utility.GetJsVersion() %>"></script>
    <script src="/BaoGong/Scripts/vue.js"></script>
    <script src="/BaoGong/Scripts/js.cookie.min.js"></script>
    <script src="/BaoGong/scripts/axios0.25.0.js"></script>
    <script src="/BaoGong/scripts/config.js?<%=WebApp.Utility.GetJsVersion() %>"></script>
    <link href="/BaoGong/scripts/vant/vant.css" rel="stylesheet" />
    <script src="/BaoGong/scripts/vant/vant.js"></script>
    </div>
    <script src="/BaoGong/js/fjLogin.js?<%=WebApp.Utility.GetJsVersion() %>"></script>
</body>
</html>