南骏 池
6 天以前 1ad8334fa579f1746efe55303a7773ad85aeee51
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
<%@ Page Title="" Language="C#" MasterPageFile="~/Mst.master" AutoEventWireup="true" CodeFile="UserLogin.aspx.cs" Inherits="UserLogin" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
    <style>
        .bg-info {
            background-color:#fff;
        }
    </style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" runat="Server">
 <template>
    <div class="login">
        <h1>GS-PDA 用户登录</h1>
        <div class="login-wrapper" style="margin-bottom:50px;">
            <div class="avatar">
                <van-image
                  fill
                  width="100%"
                  src="images/logo.png"
                ></van-image>
            </div>
            <van-form @submit="onSubmit" :show-error="false" >
                <van-cell-group inset>
                <van-field
                  v-model="phone"
                  name="phone"
                  label=""
                  clickable
                  placeholder="请输入账号"
                  :rules="[{ required: true, message: '请输入账号' }]"
                ></van-field>
                <van-field
                 clickable
                  v-model="passwd"
                  type="password"
                  name="password"
                  label=""
                  placeholder="请输入密码" 
                  :rules="[{ required: true, message: '请输入密码' }]"
                ></van-field>
             </van-cell-group>
                <div  class="margin padding margin-lg-bottom">
                    <van-button round block type="info" native-type="submit" :loading="isLoading">
                        登录
                    </van-button>
                   <br />
                </div>
            </van-form>
        </div>
    </div>
       <div class=" margin-lg-top font-sm text-right font-remark" style="position:absolute;bottom:10px;right:10px;">技术支持:宁波广深科技</div>
</template>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder3" runat="Server">
  <comloading  v-if="isLoading"></comloading>
</asp:Content>
<asp:Content ID="Content4" ContentPlaceHolderID="ContentPlaceHolder4" runat="Server">
    <script src="/H5/Js/UserLogin.js?<%=1234 %>"></script>
</asp:Content>