login.wxml
2.1 KB
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
<view class="headtitle">
WinesBook
</view>
<view class="logintitle">
<view class="loginleft {{login==1?'loginactive':''}}" bindtap='yanzheng'>验证码登录</view>
<view class="loginright {{login==2?'loginactive':''}}" bindtap="mima">密码登录</view>
</view>
<!-- 验证码登录 -->
<view wx:if="{{login==1}}">
<view class="yanzheng">
<view class="yanzhengleft">
<view class="pho">+86</view>
<view class="rowimg" >
<image src="{{url}}/aicon_53x.png"></image>
</view>
</view>
<!-- -->
<view class="yanzhengmiddle">
<input placeholder='请输入手机号' placeholder-class='enterphone' bindinput="enterphone" value="{{phone}}" type="number"/>
</view>
<view class="chaimg" bindtap="clearphone">
<image src="{{url}}/aicon_07x.png"></image>
</view>
</view>
<view class="login" bindtap="login">登录</view>
<view class="firlogin">首次登录会自动创建新账号</view>
</view>
<!-- 密码登录 -->
<view wx:if="{{login==2}}">
<view class="yanzheng ">
<view class="yanzhengleft">
<view class="pho">+86</view>
<view class="rowimg">
<image src="{{url}}/aicon_53x.png"></image>
</view>
</view>
<view class="yanzhengmiddle">
<input placeholder='请输入手机号' placeholder-class='enterphone' value="{{mimaphone}}" type="number" bindinput="mimaphone" />
</view>
<view class="chaimg" bindtap="clearphone">
<image src="{{url}}/aicon_07x.png"></image>
</view>
</view>
<view class="yanzheng mima">
<view class="yanzhengmiddle yanzhengma">
<input placeholder='请输入密码' placeholder-class='enterphone' bindinput="shumima" type="password" value="{{mima}}"/>
</view>
<view class="mimaimg" bindtap="clearmima">
<view class="chaimg">
<image src="{{url}}/aicon_07x.png"></image>
</view>
<view class="eyeimg">
<image src="{{url}}/bicon_13x.png"></image>
</view>
</view>
</view>
<view class="login" bindtap="mimalogin">登录</view>
<view class="forgetmima" bindtap="forgetmima">忘记密码?</view>
</view>