qa-education-exam-weapp/pages/login/login.wxml

22 lines
1.2 KiB
Plaintext
Raw Normal View History

2026-04-17 16:22:56 +08:00
<view class="container">
<!-- <web-view src="http://192.168.0.18:8080/static/html.html" fullscreen allow></web-view> -->
<view class="banner">
<van-image width="100%" height="415rpx" src="/assets/images/login/loginbg.png" />
<view class="title text-white">
<view class="hello">您好!</view>
<view class="welcome">欢迎来到金安铸云</view>
</view>
</view>
<view class="login">
<view class="title">登录</view>
<view class="form">
<van-cell-group border="{{ false }}">
<van-field left-icon="/assets/images/login/userico.png" model:value="{{ userName }}" placeholder="请输入用户名" border="{{ false }}" custom-style="margin-top:50rpx;background-color:#f4f4fc;border-radius:40rpx" />
<van-field left-icon="/assets/images/login/paswordico.png" model:value="{{ password }}" type="password" placeholder="请输入密码" border="{{ false }}" custom-style="margin-top:50rpx;background-color:#f4f4fc;border-radius:40rpx" />
</van-cell-group>
<van-button color="linear-gradient(to right, #00ccff, #3676f2)" round size="small" custom-style="margin-top:50rpx; width:100%; height:70rpx" bind:click="submitLogin">
登录
</van-button>
</view>
</view>
</view>