物流端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
yyt-mall-wl/pages/login/login.wxml

19 lines
617 B

<!--pages/login/login.wxml-->
<view class="title">欢迎登录</view>
<view style="background-color: #fff; width: 650rpx; border-radius: 10rpx; margin: 0 auto; padding: 30rpx 0;">
<view class="text">
<label>账号:</label>
<input type="text" placeholder="请输入账号" value="{{username}}" bindinput="getUsername" data-value="username" />
</view>
<view class="text">
<label>密码:</label>
<input type="password" placeholder="请输入密码" value="{{userpwd}}" bindinput="getUserpwd" data-value="userpwd" />
</view>
<button class="btn" bindtap="login">登 录</button>
</view>