outbackpeopledetail.wxml
5.6 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<view class="backtop">
<view class="useboxitem flextwo">
<view class="itemname commonone topname">出行信息</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">出行方式</view>
<view class="itemright flexone">
<view class="commontwo commonenter">
{{basic.travel}}
</view>
</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone" wx:if="{{basic.travel == '飞机'}}">航班号</view>
<view class="itemname commonone" wx:elif="{{basic.travel == '自驾' || basic.travel == '大巴'}}">车牌号</view>
<view class="itemname commonone" wx:elif="{{basic.travel == '火车'}}">车次</view>
<view class="itemname commonone" wx:else>有效证件号</view>
<view class="itemright flexone time">
<view class="commontwo commonenter">
{{basic.number}}
</view>
</view>
</view>
</view>
<view class="backtop peopleitem">
<view class="useboxitem flextwo">
<view class="itemname commonone topname">人员信息</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">姓名</view>
<view class="itemright flexone">
<view class="commontwo commonenter">
{{first.name}}
</view>
</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">国籍</view>
<view class="itemright flexone">
<view class="commontwo commonenter">
<text wx:if="{{first.nation==1}}">中国</text>
<text wx:if="{{first.nation==2}}">港澳台</text>
<text wx:if="{{first.nation==3}}">外籍</text>
</view>
</view>
</view>
<!-- wx:if="{{first.credentials_type==1}}" -->
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">证件类型</view>
<view class="itemright flexone">
<view class="commontwo commonenter" wx:if="{{first.credentials_type==1}}">
身份证
</view>
<view class="commontwo commonenter" wx:if="{{first.credentials_type==2}}">
港澳台通行证
</view>
<view class="commontwo commonenter" wx:if="{{first.credentials_type==3}}">
护照
</view>
</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">证件号码</view>
<view class="itemright flexone">
<view class="commontwo commonenter">
{{first.identity}}
</view>
</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">联系电话</view>
<view class="itemright flexone">
<view class="commontwo commonenter">
{{first.mobile}}
</view>
</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">从何国返静</view>
<view class="itemright flexone">
<view class="commontwo commonenter">
{{first.from_province}}
</view>
</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">途经国家或城市</view>
<view class="itemright flexone">
<view class="commontwo commonenter">
{{first.arrivecity}}
</view>
</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">到静海时间(计划)</view>
<view class="itemright flexone time">
<view class="commontwo commonenter">
{{first.arrivetime}}
</view>
</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">目的地</view>
<view class="itemright flexone">
<view class="commontwo commonenter">
{{first.town_p_name}}{{first.town_name}}
</view>
</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">详细地址(具体到门牌号)</view>
<view class="itemright flexone">
<view class="commontwo men">
{{first.add}}
</view>
</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">是否有相应症状(发热、呕吐)</view>
<view class="itemright flexone istouch">
<view class="commontwo commonenter" wx:if="{{first.is_symptom==1}}">
是
</view>
<view class="commontwo commonenter" wx:else>
否
</view>
</view>
</view>
<view class="useboxitem backitem flextwo">
<view class="itemname commonone">两周内有无重度疫情区来往接触史</view>
<view class="itemright flexone istouch">
<view class="commontwo commonenter" wx:if="{{first.is_epidemic==1}}">
是
</view>
<view class="commontwo commonenter" wx:else>
否
</view>
</view>
</view>
</view>
<view class="code flextwo">
<view class="codeleft">
二维码
</view>
<view class="coderight flexone" bindtap="dian">
<view class="commontwo">点击查看/保存</view>
<view class="codeimg">
<image src="{{codeurl}}"></image>
</view>
</view>
</view>
<view class="bot" bindtap="edit">
<view class="subtwo">编辑</view>
</view>
<view class="registerk" wx:if="{{showcode}}">
<view class="codewrap">
<view class="codetop">
<image src="/img/codetopimg.png"></image>
<view class="codename">我的二维码</view>
</view>
<view class="codekimg" bindlongpress="baocun">
<image src="{{codeurl}}"></image>
</view>
<view class="ansave">长按保存二维码</view>
</view>
<view class="closeimg" bindtap="closecode">
<image src="/img/closecode.png"></image>
</view>
</view>