companyidentity.wxml
1.7 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
76
77
78
79
80
81
<view class="identitybox">
<view class="backtop">
<picker bindchange="bindprovinceChange" value="{{companyindex}}" range="{{companyarray}}" range-key="name">
<view class="picker">
<!-- 当前选择:{{array[index]}} -->
<view class="useboxitem flextwo">
<view class="itemname commonone">企业</view>
<view class="itemright flexone">
<view class="commontwo seltype ">
{{companyname}}
</view>
<view class="yourow you">
<image src="/img/yourow.png"></image>
</view>
</view>
</view>
</view>
</picker>
<view class="useboxitem flextwo">
<view class="itemname commonone">姓名</view>
<view class="itemright flexone">
<view class="commontwo commonenter">
<input placeholder="请填写姓名" placeholder-class="commontwo" bindinput="entername"/>
</view>
</view>
</view>
<view class="useboxitem flextwo">
<view class="itemname commonone">手机号</view>
<view class="itemright flexone">
<view class="commontwo commonenter">
<input placeholder="请填写手机号" placeholder-class="commontwo" bindinput="enterphone"/>
</view>
</view>
</view>
<view class="useboxitem flextwo">
<view class="itemname commonone">身份证号</view>
<view class="itemright flexone">
<view class="commontwo commonenter">
<input placeholder="请填写身份证号" placeholder-class="commontwo" bindinput="entercard"/>
</view>
</view>
</view>
</view>
</view>
<view class="botk">
<view class="subtwo" bindtap="finish">完成</view>
</view>