Blame view

pages/declaration/declaration.vue 41.2 KB
1f3f2378   起风了   我的第一次
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <template>

  	<view class="page">

  		<pyh-nv ref="nv" :config="nvConfig"></pyh-nv>

  		<view class="listBox" :style="{'padding-top':(pageTop+'px')}">

  			<view class="content">

  				<view class="top-box" @click="gopath('/pages/declaration/declarationList?type='+OrderType)">

  					<view>上报历史</view>

  					<view class="top-box-img">

  						<image src="../../static/right2.png"></image>

  					</view>

  				</view>

  				<view class="titleall-left">

  					<view class="titleall-left-line"></view>我要上报

  				</view>

  				<view class="message-list" v-if="OrderType==1">

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">行政区划</view>

  								<view class="serve-right">

  									<picker @change="e=> bindPickerChange1(e,3)" :value="index" :range="array3">

d7d4c017   李宇   1
22
  										<view :class="community.adminArea?'uni-input1':'uni-input2'">{{community.adminArea?community.adminArea:'请选择'}}

1f3f2378   起风了   我的第一次
23
24
25
26
27
28
29
30
31
32
33
34
35
  										</view>

  									</picker>

  									<image src="../../static/down3.png"></image>

  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">地名类别</view>

  								<view class="serve-right">

  									<picker @change="e=> bindPickerChange1(e,1)" :value="index" :range="array1">

d7d4c017   李宇   1
36
  										<view :class="community.placeNameCategory?'uni-input1':'uni-input2'">

1f3f2378   起风了   我的第一次
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  											{{community.placeNameCategory?community.placeNameCategory:'请选择'}}

  										</view>

  									</picker>

  									<image src="../../static/down3.png"></image>

  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">类型</view>

  								<view class="serve-right">

  									<picker @change="e=> bindPickerChange1(e,2)" :value="index" :range="array2">

d7d4c017   李宇   1
51
  										<view :class="community.types?'uni-input1':'uni-input2'">{{community.types?community.types:'请选择'}}

1f3f2378   起风了   我的第一次
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  										</view>

  									</picker>

  									<image src="../../static/down3.png"></image>

  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">小区名称</view>

  								<view>

  									<input id="communityName" @input="oninput" v-module="community.communityName"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
66
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
67
68
69
70
71
72
73
74
75
76
77
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">曾用名称</view>

  								<view>

  									<input id="originalName" @input="oninput" v-module="community.originalName"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
78
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
79
80
81
82
83
84
85
86
87
88
89
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">历史地名</view>

  								<view>

  									<input id="historyName" @input="oninput" v-module="community.historyName"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
90
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
91
92
93
94
95
96
97
98
99
100
101
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">总建筑面积</view>

  								<view>

  									<input id="totalArea" @input="oninput" v-module="community.totalArea"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
102
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
103
104
105
106
107
108
109
110
111
112
113
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">村社区</view>

  								<view>

  									<input id="villageCommunity" @input="oninput" v-module="community.villageCommunity"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
114
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
115
116
117
118
119
120
121
122
123
124
125
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">幢数</view>

  								<view>

  									<input id="buildingCount" @input="oninput" v-module="community.buildingCount"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
126
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
127
128
129
130
131
132
133
134
135
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">详细地址</view>

  								<view class="serve-right" @tap="openaddress(1)">

d7d4c017   李宇   1
136
  									<view :class="community.address?'uni-input1':'uni-input2'">{{community.address?community.address:'请选择'}}</view>

1f3f2378   起风了   我的第一次
137
138
139
140
141
142
143
144
145
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">有效起始时间</view>

  								<view class="serve-right" @tap="opentime(1)">

d7d4c017   李宇   1
146
  									<view :class="community.validStartDate?'uni-input1':'uni-input2'">{{community.validStartDate?community.validStartDate:'请选择'}}

1f3f2378   起风了   我的第一次
147
148
149
150
151
152
153
154
155
156
  									</view>

  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">有效终止日期</view>

  								<view class="serve-right" @tap="opentime(2)">

d7d4c017   李宇   1
157
  									<view :class="community.validEndDate?'uni-input1':'uni-input2'">{{community.validEndDate?community.validEndDate:'请选择'}}

1f3f2378   起风了   我的第一次
158
159
160
161
162
163
164
165
166
167
168
169
  									</view>

  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">总户数</view>

  								<view>

  									<input id="totalUnits" @input="oninput" v-module="community.totalUnits"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
170
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
171
172
173
174
175
176
177
178
179
180
181
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">开发商</view>

  								<view>

  									<input id="developer" @input="oninput" v-module="community.developer"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
182
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
183
184
185
186
187
188
189
190
191
192
193
194
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">罗马字母拼写</view>

  								<view>

  									<input id="romanLettersSpell" @input="oninput"

  										v-module="community.romanLettersSpell" placeholder="请输入"

  										style="text-align: right;"

d7d4c017   李宇   1
195
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
196
197
198
199
200
201
202
203
204
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">设立时间</view>

  								<view class="serve-right" @tap="opentime(3)">

d7d4c017   李宇   1
205
  									<view :class="community.establishTime?'uni-input1':'uni-input2'">{{community.establishTime?community.establishTime:'请选择'}}

1f3f2378   起风了   我的第一次
206
207
208
209
210
211
212
213
214
215
216
217
218
  									</view>

  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">地名来历</view>

  								<view>

  									<input id="originOfPlaceNames" @input="oninput"

  										v-module="community.originOfPlaceNames" placeholder="请输入"

  										style="text-align: right;"

d7d4c017   李宇   1
219
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
220
221
222
223
224
225
226
227
228
229
230
231
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">地名含义</view>

  								<view>

  									<input id="meaningOfPlaceNames" @input="oninput"

  										v-module="community.meaningOfPlaceNames" placeholder="请输入"

  										style="text-align: right;"

d7d4c017   李宇   1
232
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
233
234
235
236
237
238
239
240
241
242
243
244
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">历史沿革</view>

  								<view>

  									<input id="historicalEvolution" @input="oninput"

  										v-module="community.historicalEvolution" placeholder="请输入"

  										style="text-align: right;"

d7d4c017   李宇   1
245
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
246
247
248
249
250
251
252
253
254
255
256
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">邮政编码</view>

  								<view>

  									<input id="postalCode" @input="oninput" v-module="community.postalCode"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
257
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
258
259
260
261
262
263
264
265
266
267
268
269
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">所在</view>

  								<view>

  									<input id="administrativeRegion" @input="oninput"

  										v-module="community.administrativeRegion" placeholder="请输入"

  										style="text-align: right;"

d7d4c017   李宇   1
270
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
271
272
273
274
275
276
277
278
279
280
281
282
283
  								</view>

  							</view>

  						</view>

  					</view>

  

  				</view>

  				<view class="message-list" v-else-if="OrderType==2">

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">行政区划</view>

  								<view class="serve-right">

  									<picker @change="e=> bindPickerChange1(e,4)" :value="index" :range="array3">

d7d4c017   李宇   1
284
  										<view :class="street.adminAre?'uni-input1':'uni-input2'">{{street.adminArea?street.adminArea:'请选择'}}

1f3f2378   起风了   我的第一次
285
286
287
288
289
290
291
292
293
294
295
296
297
298
  										</view>

  									</picker>

  									<image src="../../static/down3.png"></image>

  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">名称</view>

  								<view>

  									<input id="standardName" @input="oninput1" v-module="street.standardName"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
299
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
300
301
302
303
304
305
306
307
308
309
310
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">曾用名称</view>

  								<view>

  									<input id="originalName" @input="oninput1" v-module="street.originalName"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
311
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
312
313
314
315
316
317
318
319
320
321
322
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">地名历史</view>

  								<view>

  									<input id="nameHistory" @input="oninput1" v-module="street.nameHistory"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
323
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
324
325
326
327
328
329
330
331
332
333
334
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">地名含义</view>

  								<view>

  									<input id="nameMeaning" @input="oninput1" v-module="street.nameMeaning"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
335
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
336
337
338
339
340
341
342
343
344
345
346
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">长度</view>

  								<view>

  									<input id="length" @input="oninput1" v-module="street.length" placeholder="请输入"

  										style="text-align: right;"

d7d4c017   李宇   1
347
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
348
349
350
351
352
353
354
355
356
357
358
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">宽度</view>

  								<view>

  									<input id="width" @input="oninput1" v-module="street.width" placeholder="请输入"

  										style="text-align: right;"

d7d4c017   李宇   1
359
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
360
361
362
363
364
365
366
367
368
369
370
371
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">街道\乡镇</view>

  								<view>

  									<input id="streetRegistration" @input="oninput1"

  										v-module="street.streetRegistration" placeholder="请输入"

  										style="text-align: right;"

d7d4c017   李宇   1
372
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
373
374
375
376
377
378
379
380
381
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">有效起始时间</view>

  								<view class="serve-right" @tap="opentime(4)">

d7d4c017   李宇   1
382
  									<view :class="street.validStartDate?'uni-input1':'uni-input2'">{{street.validStartDate?street.validStartDate:'请选择'}}</view>

1f3f2378   起风了   我的第一次
383
384
385
386
387
388
389
390
391
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">有效终止日期</view>

  								<view class="serve-right" @tap="opentime(5)">

d7d4c017   李宇   1
392
  									<view :class="street.validEndDate?'uni-input1':'uni-input2'">{{street.validEndDate?street.validEndDate:'请选择'}}</view>

1f3f2378   起风了   我的第一次
393
394
395
396
397
398
399
400
401
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">开始位置</view>

  								<view class="serve-right" @tap="openaddress(2)">

d7d4c017   李宇   1
402
  									<view :class="street.startLocation?'uni-input1':'uni-input2'">{{street.startLocation?street.startLocation:'请选择'}}</view>

1f3f2378   起风了   我的第一次
403
404
405
406
407
408
409
410
411
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">结束位置</view>

  								<view class="serve-right" @tap="openaddress(3)">

d7d4c017   李宇   1
412
  									<view :class="street.endLocation?'uni-input1':'uni-input2'">{{street.endLocation?street.endLocation:'请选择'}}</view>

1f3f2378   起风了   我的第一次
413
414
415
416
417
418
419
420
421
422
423
424
  								</view>

  							</view>

  						</view>

  					</view>

  				</view>

  				<view class="message-list" v-else-if="OrderType==3">

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">行政区划</view>

  								<view class="serve-right">

  									<picker @change="e=> bindPickerChange1(e,5)" :value="index" :range="array3">

d7d4c017   李宇   1
425
  										<view :class="build.adminArea?'uni-input1':'uni-input2'">{{build.adminArea?build.adminArea:'请选择'}}

1f3f2378   起风了   我的第一次
426
427
428
429
430
431
432
433
434
435
436
437
438
439
  										</view>

  									</picker>

  									<image src="../../static/down3.png"></image>

  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">名称</view>

  								<view>

  									<input id="tallBuildName" @input="oninput2" v-module="build.tallBuildName"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
440
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
441
442
443
444
445
446
447
448
449
450
451
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">曾用名称</view>

  								<view>

  									<input id="originalName" @input="oninput2" v-module="build.originalName"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
452
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
453
454
455
456
457
458
459
460
461
462
463
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">层数</view>

  								<view>

  									<input id="layerNumber" @input="oninput2" v-module="build.layerNumber"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
464
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
465
466
467
468
469
470
471
472
473
474
475
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">占地面积</view>

  								<view>

  									<input id="occupiesArea" @input="oninput2" v-module="build.occupiesArea"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
476
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
477
478
479
480
481
482
483
484
485
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">详细地址</view>

  								<view class="serve-right" @tap="openaddress(4)">

d7d4c017   李宇   1
486
  									<view :class="build.locationPoint?'uni-input1':'uni-input2'">{{build.locationPoint?build.locationPoint:'请选择'}}</view>

1f3f2378   起风了   我的第一次
487
488
489
490
491
492
493
494
495
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">有效起始时间</view>

  								<view class="serve-right" @tap="opentime(6)">

d7d4c017   李宇   1
496
  									<view :class="build.validStartDate?'uni-input1':'uni-input2'">{{build.validStartDate?build.validStartDate:'请选择'}}</view>

1f3f2378   起风了   我的第一次
497
498
499
500
501
502
503
504
505
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">有效终止日期</view>

  								<view class="serve-right" @tap="opentime(7)">

d7d4c017   李宇   1
506
  									<view :class="build.validEndDate?'uni-input1':'uni-input2'">{{build.validEndDate?build.validEndDate:'请选择'}}</view>

1f3f2378   起风了   我的第一次
507
508
509
510
511
512
513
514
515
516
517
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">开发商</view>

  								<view>

  									<input id="developer" @input="oninput2" v-module="build.developer" placeholder="请输入"

  										style="text-align: right;"

d7d4c017   李宇   1
518
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
519
520
521
522
523
524
525
526
527
528
529
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">描述</view>

  								<view>

  									<input id="describeContent" @input="oninput2" v-module="build.describeContent"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
530
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
531
532
533
534
535
536
537
538
539
540
541
542
543
544
  								</view>

  							</view>

  						</view>

  					</view>

  

  				</view>

  				<view class="message-list" v-else-if="OrderType==4">

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">地名</view>

  								<view>

  									<input id="addressName" @input="oninput3" v-module="applicatio.addressName"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
545
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
546
547
548
549
550
551
552
553
554
555
556
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">申请人姓名</view>

  								<view>

  									<input id="applicationName" @input="oninput3" v-module="applicatio.applicationName"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
557
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
558
559
560
561
562
563
564
565
566
567
568
569
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">申请人电话</view>

  								<view>

  									<input id="applicationPhone" @input="oninput3"

  										v-module="applicatio.applicationPhone" placeholder="请输入"

  										style="text-align: right;"

d7d4c017   李宇   1
570
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
571
572
573
574
575
576
577
578
579
580
  								</view>

  							</view>

  						</view>

  					</view>

  

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">详细地址</view>

  								<view class="serve-right" @tap="openaddress(5)">

d7d4c017   李宇   1
581
  									<view :class="applicatio.address?'uni-input1':'uni-input2'">{{applicatio.address?applicatio.address:'请选择'}}</view>

1f3f2378   起风了   我的第一次
582
583
584
585
586
587
588
589
590
591
592
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">备注</view>

  								<view>

  									<input id="remark" @input="oninput3" v-module="applicatio.remark" placeholder="请输入"

  										style="text-align: right;"

d7d4c017   李宇   1
593
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
594
595
596
597
598
599
600
601
602
  								</view>

  							</view>

  						</view>

  					</view>

  				</view>

  				<view class="message-list" v-else-if="OrderType==5">

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

d7d4c017   李宇   1
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
  								<view class="serve-title">申报类型</view>

  								<view class="serve-right">

  									<picker @change="e=> bindPickerChange1(e,6)" :value="index" :range="array4">

  										<view :class="array4type?'uni-input1':'uni-input2'">{{array4type?array4type:'请选择'}}

  										</view>

  									</picker>

  									<image src="../../static/down3.png"></image>

  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box" v-if="array4type == '单个申报'">

  						<view class="info-box-list">

  							<view class="serve">

  								<view class="serve-title">类型</view>

  								<view class="serve-right">

  									<picker @change="e=> bindPickerChange1(e,7)" :value="index" :range="array5">

9e2e0fa9   李宇   1
620
  										<view :class="doorplate.gridman?'uni-input1':'uni-input2'">{{doorplate.gridman?doorplate.gridman:'请选择'}}

d7d4c017   李宇   1
621
622
623
624
625
626
627
628
629
630
  										</view>

  									</picker>

  									<image src="../../static/down3.png"></image>

  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

1f3f2378   起风了   我的第一次
631
632
633
634
  								<view class="serve-title">小区名称</view>

  								<view>

  									<input id="communityName" @input="oninput4" v-module="doorplate.communityName"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
635
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
636
637
638
639
640
641
642
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

9e2e0fa9   李宇   1
643
  								<view class="serve-title">门牌号</view>

1f3f2378   起风了   我的第一次
644
645
646
  								<view>

  									<input id="formerName" @input="oninput4" v-module="doorplate.formerName"

  										placeholder="请输入" style="text-align: right;"

d7d4c017   李宇   1
647
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
648
649
650
651
652
653
654
  								</view>

  							</view>

  						</view>

  					</view>

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="serve">

9e2e0fa9   李宇   1
655
  								<view class="serve-title">门牌地址</view>

1f3f2378   起风了   我的第一次
656
657
658
659
  								<view>

  									<input id="historicalPlaceNames" @input="oninput4"

  										v-module="doorplate.historicalPlaceNames" placeholder="请输入"

  										style="text-align: right;"

d7d4c017   李宇   1
660
  										 placeholder-style="color: #909090;font-size: 26rpx;" />

1f3f2378   起风了   我的第一次
661
662
663
664
665
  								</view>

  							</view>

  						</view>

  					</view>

  				</view>

d7d4c017   李宇   1
666
  				<view v-if="OrderType==5 && array4type == '批量申报'" class="message-list">

1f3f2378   起风了   我的第一次
667
668
669
670
671
672
673
674
675
676
677
678
  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="info-box-width" style="width: 100%;">

  								<view class="info-box-small">门牌文件</view>

  								<view style="margin-top: 20rpx;width: 100%;">

  									<sczl @onchangfileJsonfile="onchangfileJsonfile"></sczl>

  								</view>

  								<!-- <view class="info-box-list-img"><image src="../../static/img.png"></image></view> -->

  							</view>

  						</view>

  					</view>

  				</view>

d7d4c017   李宇   1
679
680
681
682
683
684
685
686
687
688
689
690
691
  				<view v-if="OrderType==3" class="message-list">

  					<view class="info-box">

  						<view class="info-box-list">

  							<view class="info-box-width" style="width: 100%;">

  								<view class="info-box-small">资料附件(建筑物平面dwg格式、国土地)</view>

  								<view style="margin-top: 20rpx;width: 100%;">

  									<sczl @onchangfileJsonfile="onchangfileJsonfile"></sczl>

  								</view>

  								<!-- <view class="info-box-list-img"><image src="../../static/img.png"></image></view> -->

  							</view>

  						</view>

  					</view>

  				</view>

1f3f2378   起风了   我的第一次
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
  				<view class="page-footer">

  					<view class="footer-buy">

  						<view class="cart-add" @click="mapdoorplatesuccess">

  							<image src="../../static/btn5.png"></image>

  							<text>立即上报</text>

  						</view>

  					</view>

  				</view>

  

  			</view>

  		</view>

  		<uni-calendar ref="calendar" :insert="false" @confirm="confirm" />

  	</view>

  </template>

  

  <script>

  	import service from '@/service/service.js'

  	import BASE_URL from "@/common/config.js"

  	import sczl from "@/components/sczl.vue"

  	export default {

  		data() {

  			return {

  				BASE_URL,

  				fileList: [],

  				OrderType: 0,

  				nvConfig: {

  					title: "路门牌上报",

  					bgColor: "#ffffff",

  					color: "#000000",

  					fixedAssist: {

  						hide: true,

  					},

  				},

  				time: null,

  				doorplate: {

  					applyId: uni.getStorageSync('USERS_KEY').userId,

  					createdUser: uni.getStorageSync('USERS_KEY').userId,

  					communityName: null, //小区名称

9e2e0fa9   李宇   1
730
  					gridman:null,//门牌类型

1f3f2378   起风了   我的第一次
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
  					formerName: null, //曾用名

  					historicalPlaceNames: null, //历史地名

  					doorNumberFile: null, //门牌文件

  					status: '待审核', //审核状态

  					submissionTime:new Date().getTime(),//时间

  				},

  				applicatio: {

  					applyId: uni.getStorageSync('USERS_KEY').userId,

  					createdUser: uni.getStorageSync('USERS_KEY').userId,

  					addressName: null, //地名

  					address: null, //地名地址

  					applicationName: null, //申请人姓名

  					applicationPhone: null, //申请人电话

  					map: null, //经纬度

  					remark: null, //备注

  					auditStatus: '待审核', //审核状态

  				},

  				build: {

  					applyId: uni.getStorageSync('USERS_KEY').userId,

  					createdUser: uni.getStorageSync('USERS_KEY').userId,

  					adminArea: null, //行政区划					

  					tallBuildName: null, //名称

  					originalName: null, //曾用名称

  					layerNumber: null, //层数

  					developer: null, //占地面积				

  					describeContent: null, //描述

  					validStartDate: null, //有效起始日期

  					validEndDate: null, //有效终止日期					

  					locationPoint: null, //地理位置

  					status: '待审核', //审核状态

d7d4c017   李宇   1
761
  					imageData:null

1f3f2378   起风了   我的第一次
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
  				},

  				street: {

  					applyId: uni.getStorageSync('USERS_KEY').userId,

  					createdUser: uni.getStorageSync('USERS_KEY').userId,

  					adminArea: null, //行政区划					

  					standardName: null, //名称

  					originalName: null, //曾用名称

  					nameHistory: null, //历史地名

  					nameMeaning: null, //地名含义				

  					length: null, //长度

  					width: null, //宽度

  					streetRegistration: null, //街道\乡镇

  					validStartDate: null, //有效起始日期

  					validEndDate: null, //有效终止日期					

  					startLocation: null, //开始位置

  					endLocation: null, //结束位置

  					status: '待审核', //审核状态

  				},

  				community: {

  					applyId: uni.getStorageSync('USERS_KEY').userId,

  					createdUser: uni.getStorageSync('USERS_KEY').userId,

  					placeNameCategory: null, //地名类别

  					types: null, //类型

  					adminArea: null, //行政区划

  					communityName: null, //小区名称

  					originalName: null, //曾用名称

  					historyName: null, //历史地名

  					totalArea: null, //总建筑面积

  					villageCommunity: null, //村社区

  					buildingCount: null, //幢数

  					address: null, //地址

  					locationPoint: null, //经纬度

  					validStartDate: null, //有效起始日期

  					validEndDate: null, //有效终止日期

  					totalUnits: null, //总户数

  					developer: null, //开发商

  					status: '待审核', //审核状态

  					romanLettersSpell: null, //罗马字母拼写

  					establishTime: null, //设立时间

  					originOfPlaceNames: null, //地名来历

  					meaningOfPlaceNames: null, //地名含义

  					historicalEvolution: null, //历史沿革

  					postalCode: null, //邮政编码

  					administrativeRegion: null, //所在

  				},

  				from: {

  					createdUser: uni.getStorageSync('USERS_KEY').userId,

  					status: '待处理',

  					name: '',

  					road_status: '',

  					latitude: '',

  					longitude: '',

  					address: '',

  					phone: '',

  					inspectionImage: ''

  				},

  				array1: ['农村牧场点', '工矿点', '农村居民点', '城镇居民点'],

  				array2: ['农林牧场', '工矿点', '农村', '城镇'],

  				array3: getApp().globalData.list1,

d7d4c017   李宇   1
821
822
823
  				array4: ['单个申报','批量申报'],

  				array5: ['临街门牌', '大门牌', '楼栋牌', '单元牌', '户牌'],

  				array4type:null,

1f3f2378   起风了   我的第一次
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
  			};

  		},

  		onPageScroll(e) {

  			this.$refs.nv.pageScroll(e)

  		},

  		components:{sczl},

  		computed: {

  			pageTop() {

  				return parseInt(88 * uni.getSystemInfoSync().windowWidth / 750) + uni.getSystemInfoSync().statusBarHeight

  			}

  		},

  		onLoad(params) {

  			this.OrderType = params.type;

  			if (this.OrderType == 1) {

  				this.nvConfig.title = '居民小区上报'

  			} else if (this.OrderType == 2) {

  				this.nvConfig.title = '街路巷申报'

  			} else if (this.OrderType == 3) {

d7d4c017   李宇   1
842
  				this.nvConfig.title = '建筑名称备案'

1f3f2378   起风了   我的第一次
843
  			} else if (this.OrderType == 4) {

d7d4c017   李宇   1
844
  				this.nvConfig.title = '地名命名申报'

1f3f2378   起风了   我的第一次
845
  			} else if (this.OrderType == 5) {

d7d4c017   李宇   1
846
  				this.nvConfig.title = '门楼牌需求申报'

1f3f2378   起风了   我的第一次
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
  			}

  		},

  		methods: {

  			onchangfileJsonfile(e) {

  				console.log('e',e);

  				this.filelist = e

  				console.log('this.filelist',this.filelist);

  			},

  			oninput(e) {

  				this.community[e.target.id] = e.target.value

  			},

  			oninput1(e) {

  				this.street[e.target.id] = e.target.value

  			},

  			oninput2(e) {

  				this.build[e.target.id] = e.target.value

  			},

  			oninput3(e) {

  				this.applicatio[e.target.id] = e.target.value

  			},

  			oninput4(e) {

  				this.doorplate[e.target.id] = e.target.value

  			},

  			opentime(e) {

  				this.$refs.calendar.open();

  				this.time = e

  			},

  			confirm(e) {

  				console.log(e);

  				if (this.time == 1) {

  					// this.community.validStartDate = e.fulldate

  					this.$set(this.community, 'validStartDate', e.fulldate)

  				} else if (this.time == 2) {

  					this.community.validEndDate = e.fulldate

  				} else if (this.time == 3) {

  					this.community.establishTime = e.fulldate

  				} else if (this.time == 4) {

  					this.street.validStartDate = e.fulldate

  				} else if (this.time == 5) {

  					this.street.validEndDate = e.fulldate

  				} else if (this.time == 6) {

  					this.build.validStartDate = e.fulldate

  				} else if (this.time == 7) {

  					this.build.validEndDate = e.fulldate

  				}

  				console.log(this.community);

  			},

  			gopath(e) {

  				uni.navigateTo({

  					url: e

  				})

  			},

  			async afterRead(event) {

  				for (let i = 0; i < event.file.length; i++) {

  					var res = await this.uploadImg(event.file[i].url)

  					// console.log(res)

  					res = JSON.parse(res.data)

  					this.fileList.push({

  						name: res.fileName,

  						fileId: res.newFileName,

  						url: this.BASE_URL + res.fileName

  					})

  				}

  			},

  			uploadImg(url) {

  				return new Promise((r, e) => {

  					uni.uploadFile({

  						url: this.BASE_URL + "/common/upload",

  						filePath: url,

  						name: "file",

  						success: (d) => r(d)

  					})

  				})

  			},

  			deletePic(event) {

  				this.fileList.splice(event.index, 1)

  			},

  			bindPickerChange1: function(e, e1) {

c9dfa49c   李宇   1
925
  				console.log('picker发送选择改变,携带值为', e, e1,this.array3[e.detail.value])

1f3f2378   起风了   我的第一次
926
927
928
929
930
931
932
933
934
935
  				if (e1 == 1) {

  					this.community.placeNameCategory = this.array1[e.detail.value]

  				} else if (e1 == 2) {

  					this.community.types = this.array2[e.detail.value]

  				} else if (e1 == 3) {

  					this.community.adminArea = this.array3[e.detail.value]

  				} else if (e1 == 4) {

  					this.street.adminArea = this.array3[e.detail.value]

  				} else if (e1 == 5) {

  					this.build.adminArea = this.array3[e.detail.value]

d7d4c017   李宇   1
936
937
938
  				}else if (e1 == 6) {

  					this.array4type = this.array4[e.detail.value]

  				}else if (e1 == 7) {

9e2e0fa9   李宇   1
939
  					this.doorplate.gridman = this.array5[e.detail.value]

1f3f2378   起风了   我的第一次
940
  				}

1f3f2378   起风了   我的第一次
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
  			},

  			mapdoorplatesuccess() {

  				if (this.OrderType == 1) {

  					console.log('this.community', this.community)

  					// return

  					this.API.addCommunity(this.community).then(res => {

  						console.log(res);

  						if (res.code == 200) {

  							uni.showToast({

  								icon: 'success',

  								title: "添加成功",

  							})

  							setTimeout(() => {

  								uni.redirectTo({

  									url: '/pages/mapdoorplatesuccess/mapdoorplatesuccess',

  								})

  							}, 800)

  

  						}

  					})

  					return

  				} else if (this.OrderType == 2) {

  					console.log('this.street', this.street)

  					// return

  					this.API.addstreet(this.street).then(res => {

  						console.log(res);

  						if (res.code == 200) {

  							uni.showToast({

  								icon: 'success',

  								title: "添加成功",

  							})

  							setTimeout(() => {

  								uni.redirectTo({

  									url: '/pages/mapdoorplatesuccess/mapdoorplatesuccess',

  								})

  							}, 800)

  

  						}

  					})

  					return

  				} else if (this.OrderType == 3) {

d7d4c017   李宇   1
982
983
984
985
986
987
988
989
990
991
992
993
  					console.log('this.filelist', this.filelist)

  					let box1 = ''

  					for (let i = 0; i < this.filelist.length; i++) {

  						console.log('this.filelist[i]',this.filelist[i])

  						if(i == 0) {

  							box1 = this.filelist[i].url

  						} else {

  							box1 =box1+','+ this.filelist[i].url

  						}

  					}

  					console.log('box1',box1)

  					this.build.imageData = box1

1f3f2378   起风了   我的第一次
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
  					console.log('this.build', this.build)

  					// return

  					this.API.addbuild(this.build).then(res => {

  						console.log(res);

  						if (res.code == 200) {

  							uni.showToast({

  								icon: 'success',

  								title: "添加成功",

  							})

  							setTimeout(() => {

  								uni.redirectTo({

  									url: '/pages/mapdoorplatesuccess/mapdoorplatesuccess',

  								})

  							}, 800)

  

  						}

  					})

  					return

  				} else if (this.OrderType == 4) {

  					console.log('this.applicatio', this.applicatio)

  					// return

  					this.API.addapplication(this.applicatio).then(res => {

  						console.log(res);

  						if (res.code == 200) {

  							uni.showToast({

  								icon: 'success',

  								title: "添加成功",

  							})

  							setTimeout(() => {

  								uni.redirectTo({

  									url: '/pages/mapdoorplatesuccess/mapdoorplatesuccess',

  								})

  							}, 800)

  

  						}

  					})

  					return

  				} else if (this.OrderType == 5) {

d7d4c017   李宇   1
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
  					

  					if(this.array4type == '批量申报') {

  						console.log('this.filelist', this.filelist)

  						let box1 = ''

  						for (let i = 0; i < this.filelist.length; i++) {

  							console.log('this.filelist[i]',this.filelist[i])

  							if(i == 0) {

  								box1 = this.filelist[i].url

  							} else {

  								box1 =box1+','+ this.filelist[i].url

  							}

1f3f2378   起风了   我的第一次
1043
  						}

d7d4c017   李宇   1
1044
1045
  						console.log('box1',box1)

  						this.doorplate.doorNumberFile = box1

1f3f2378   起风了   我的第一次
1046
  					}

d7d4c017   李宇   1
1047
  

1f3f2378   起风了   我的第一次
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
  					// return

  					this.API.adddoorplate(this.doorplate).then(res => {

  						console.log(res);

  						if (res.code == 200) {

  							uni.showToast({

  								icon: 'success',

  								title: "添加成功",

  							})

  							setTimeout(() => {

  								uni.redirectTo({

  									url: '/pages/mapdoorplatesuccess/mapdoorplatesuccess',

  								})

  							}, 800)

  

  						}

  					})

  					return

  				}

  

  

  			},

  			openaddress(e) {

  				let that = this

  				// 用户已经同意小程序使用录音功能,后续调用 wx.startRecord 接口不会弹窗询问

  				wx.chooseLocation({

  					success: function(res) {

  						console.log(res);

  						// that.from.latitude = res.latitude

  						if (e == 1) {

  							that.community.locationPoint = res.longitude + ',' + res.latitude

  							that.community.address = res.address

  						} else if (e == 2) {

  							that.street.startLocation = res.longitude + ',' + res.latitude

  						} else if (e == 3) {

  							that.street.endLocation = res.longitude + ',' + res.latitude

  						} else if (e == 4) {

  							that.build.locationPoint = res.longitude + ',' + res.latitude

  						} else if (e == 5) {

  							that.applicatio.map = res.longitude + ',' + res.latitude

  							that.applicatio.address = res.address

  						}

  						// that.arr1.plot=res.name

  					},

  					fail(err) {

  						console.log(err)

  					}

  				});

  			},

  		}

  	}

  </script>

  

  <style scoped lang="scss">

d7d4c017   李宇   1
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
  	.uni-input1 {

  		color:#3d3d3d;

  		// font-weight: bold;

  	

  	}

  	.uni-input2 {

  		color: #909090;

  	

  	}

  	input {

  		color: #3d3d3d;

  		font-size: 26rpx;

  	}

1f3f2378   起风了   我的第一次
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
  	.listBox {

  		position: relative;

  		z-index: 1;

  	}

  

  	.content {

  		width: 100%;

  		padding-bottom: 120rpx;

  	}

  

  	.titleall-left {

  		font-size: 28rpx;

  		font-weight: bold;

  		display: flex;

  		align-items: center;

  		margin: 30rpx;

  

  		.titleall-left-line {

  			width: 10rpx;

  			height: 25rpx;

  			border-radius: 18rpx;

  			background-color: #547DFF;

  			margin-right: 20rpx;

  			box-shadow: inset 0rpx 4rpx 9rpx 0rpx rgba(255, 255, 255, 0.34), 5rpx 7rpx 9rpx 0rpx rgba(80, 161, 255, 0.33);

  		}

  	}

  

  	.top-box {

  		display: flex;

  		justify-content: space-between;

  		margin: 30rpx;

  		font-size: 28rpx;

  		font-weight: bold;

  		background-color: #fff;

  		border-radius: 21rpx;

  		padding: 30rpx;

  

  		.top-box-img {

  			image {

  				width: 40rpx;

  				height: 40rpx;

  			}

  		}

  	}

  

  	.titleall-box {

  		display: flex;

  		justify-content: space-between;

  		padding: 40rpx 20rpx 20rpx 0;

  

  		.titleall-left {

  			font-size: 32rpx;

  			font-weight: bold;

  			display: flex;

  			align-items: center;

  

  			.titleall-left-line {

  				width: 14rpx;

  				height: 36rpx;

  				border-radius: 0 10rpx 10rpx 0;

  				background-color: #667FFF;

  				box-shadow: 0 0 10rpx 5rpx #d1d9ff;

  				margin-right: 20rpx;

  			}

  

  			text {

  				font-size: 28rpx;

  				color: #999999;

  			}

  		}

  	}

  

  	.message-list {

  		// background-color: #FFFFFF;

  		// border-radius: 20rpx;

  		font-size: 25rpx;

  		margin: 25rpx;

  

  		.info-box {

  			padding: 0 40rpx;

  			background: #FFFFFF;

  			border-radius: 21rpx;

  			margin-bottom: 15rpx;

  

  			.info-box-list {

  				display: flex;

  				align-items: center;

  				border-bottom: 2rpx solid #ececec;

  				padding-top: 20rpx;

  				padding-bottom: 20rpx;

  

  				.width100 {

  					width: 100% !important;

  				}

  

  				.info-box-width {

  					width: 50%;

  					font-size: 30rpx;

  					font-weight: bold;

  

  					.info-box-small {

  						font-size: 26rpx;

  						color: #a8a8a8;

  						font-weight: 500;

  						margin-top: 10rpx;

  					}

  

  					.info-box-list-img {

  						margin-top: 30rpx;

  

  						image {

  							width: 180rpx;

  							height: 180rpx;

  							border-radius: 20rpx;

  						}

  					}

  

  					.input-text {

  						font-size: 30rpx;

  					}

  

  					.inputtext {

  						color: #3d3d3d;

  					}

  

  					.textarea {

  						background-color: #F7F7F7;

  						border-radius: 20rpx;

  						width: 100%;

  						margin-top: 20rpx;

  						padding: 20rpx;

  						font-size: 28rpx;

  						font-weight: normal;

  						min-height: 80rpx;

  					}

  				}

  

  				.serve {

  					display: flex;

  					justify-content: space-between;

  					align-items: center;

  					width: 100%;

  

  					.serve-title {

d7d4c017   李宇   1
1258
  						font-size: 26rpx;

1f3f2378   起风了   我的第一次
1259
1260
1261
1262
  						color: #909090;

  					}

  

  					.serve-right {

d7d4c017   李宇   1
1263
1264
  						font-size: 26rpx;

  						// font-weight: bold;

1f3f2378   起风了   我的第一次
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
  						display: flex;

  						align-items: center;

  						justify-content: flex-end;

  

  						text {

  							color: #FC4444;

  						}

  

  						image {

  							width: 20rpx;

  							height: 20rpx;

  							margin-left: 10rpx;

  						}

  					}

  				}

  			}

  

  			.info-box-list:last-child {

  				border-bottom: 0;

  			}

  		}

  	}

  

  	/* 底部 */

  	.page-footer {

  		margin: 30rpx;

  		display: flex;

  		height: 100rpx;

  

  		.footer-buy {

  			height: 100%;

  			width: 100%;

  

  			.cart-add {

  				display: flex;

  				align-items: center;

  				justify-content: center;

  				margin-top: 60rpx;

  

  				image {

  					position: absolute;

  					z-index: 0;

  					width: 95%;

  					height: 83rpx;

  					box-shadow: 5rpx 10rpx 20rpx 0 #b7c8ff;

  					border-radius: 100rpx;

  				}

  

  				text {

  					font-size: 30rpx;

  					font-weight: bold;

  					color: #fff;

  					position: absolute;

  					z-index: 1;

  				}

  			}

  		}

  	}

  </style>