<%@ 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>
|