|
...
|
...
|
@@ -15,7 +15,7 @@ |
|
15
|
15
|
|
|
16
|
16
|
<!-- 产品 -->
|
|
17
|
17
|
<view class="section2">
|
|
18
|
|
- <Product mode="view" :status="form.status" :list="form.detailList" />
|
|
|
18
|
+ <Product mode="view" :status="form.status" :list="form.detailList" @applyDelay="applyDelayFun" />
|
|
19
|
19
|
</view>
|
|
20
|
20
|
<view class="section">
|
|
21
|
21
|
<view class="row"><text class="label">签收单据</text><text class="value act">{{ form.fileName }}</text></view>
|
|
...
|
...
|
@@ -24,22 +24,83 @@ |
|
24
|
24
|
</scroll-view>
|
|
25
|
25
|
<detail-buttons :buttons="displayButtons" @click="handleButtonClick" />
|
|
26
|
26
|
<uni-popup ref="uploadPopup" type="bottom" :mask-click="false">
|
|
27
|
|
- <view class="dialog">
|
|
28
|
|
- <view class="dialog_header">
|
|
29
|
|
- <text>上传签收单据</text>
|
|
30
|
|
- <view class="dialog_close" @click="closeUploadInfo">×</view>
|
|
31
|
|
- </view>
|
|
32
|
|
- <view class="dialog_body">
|
|
33
|
|
- <view class="dialog_row">
|
|
34
|
|
- <text class="dialog_label">签收单据</text>
|
|
35
|
|
- <FileUpload v-model="uploadFile" />
|
|
36
|
|
- </view>
|
|
37
|
|
- </view>
|
|
38
|
|
- <view class="dialog_footer">
|
|
39
|
|
- <button class="btn confirm" type="primary" @click="onUploadSave">保存</button>
|
|
40
|
|
- </view>
|
|
41
|
|
- </view>
|
|
42
|
|
- </uni-popup>
|
|
|
27
|
+ <view class="dialog">
|
|
|
28
|
+ <view class="dialog_header">
|
|
|
29
|
+ <text>上传签收单据</text>
|
|
|
30
|
+ <view class="dialog_close" @click="closeUploadInfo">×</view>
|
|
|
31
|
+ </view>
|
|
|
32
|
+ <view class="dialog_body">
|
|
|
33
|
+ <view class="dialog_row">
|
|
|
34
|
+ <text class="dialog_label">签收单据</text>
|
|
|
35
|
+ <FileUpload v-model="uploadFile" />
|
|
|
36
|
+ </view>
|
|
|
37
|
+ </view>
|
|
|
38
|
+ <view class="dialog_footer">
|
|
|
39
|
+ <button class="btn confirm" type="primary" @click="onUploadSave">保存</button>
|
|
|
40
|
+ </view>
|
|
|
41
|
+ </view>
|
|
|
42
|
+ </uni-popup>
|
|
|
43
|
+ <!-- 申请延期 -->
|
|
|
44
|
+ <uni-popup ref="applyDelayPopup" type="bottom" :mask-click="false">
|
|
|
45
|
+ <view class="dialog">
|
|
|
46
|
+ <view class="dialog_header">
|
|
|
47
|
+ <text>申请延期</text>
|
|
|
48
|
+ <view class="dialog_close" @click="closeApplyDelay">×</view>
|
|
|
49
|
+ </view>
|
|
|
50
|
+ <view class="dialog_body">
|
|
|
51
|
+ <uni-list>
|
|
|
52
|
+ <uni-list-item title="订单编号">
|
|
|
53
|
+ <template v-slot:footer>
|
|
|
54
|
+ <view class="value">{{ applyDelayForm.orderNo }}</view>
|
|
|
55
|
+ </template>
|
|
|
56
|
+ </uni-list-item>
|
|
|
57
|
+ <uni-list-item title="原订单计划发货日期">
|
|
|
58
|
+ <template v-slot:footer>
|
|
|
59
|
+ <view class="value">{{ applyDelayForm.shipmentsDate }}</view>
|
|
|
60
|
+ </template>
|
|
|
61
|
+ </uni-list-item>
|
|
|
62
|
+ <uni-list-item title="现申请发货日期">
|
|
|
63
|
+ <template v-slot:footer>
|
|
|
64
|
+ <uni-datetime-picker type="date" v-model="applyDelayForm.applyShipmentDate" />
|
|
|
65
|
+ </template>
|
|
|
66
|
+ </uni-list-item>
|
|
|
67
|
+ <uni-list-item title="延期原因">
|
|
|
68
|
+ <template v-slot:footer>
|
|
|
69
|
+ <uni-easyinput v-model="applyDelayForm.delayReason" placeholder="请输入延期原因" :inputBorder="false" />
|
|
|
70
|
+ </template>
|
|
|
71
|
+ </uni-list-item>
|
|
|
72
|
+ <uni-list-item title="申请次数">
|
|
|
73
|
+ <template v-slot:footer>
|
|
|
74
|
+ <view class="value">{{ applyDelayForm.applyCount }}</view>
|
|
|
75
|
+ </template>
|
|
|
76
|
+ </uni-list-item>
|
|
|
77
|
+ <uni-list-item title="订单类型">
|
|
|
78
|
+ <template v-slot:footer>
|
|
|
79
|
+ <view class="value">{{ applyDelayForm.orderType }}</view>
|
|
|
80
|
+ </template>
|
|
|
81
|
+ </uni-list-item>
|
|
|
82
|
+ <uni-list-item title="所属分厂">
|
|
|
83
|
+ <template v-slot:footer>
|
|
|
84
|
+ <view class="value">{{ applyDelayForm.workshopName }}</view>
|
|
|
85
|
+ </template>
|
|
|
86
|
+ </uni-list-item>
|
|
|
87
|
+ <uni-list-item title="客户名称">
|
|
|
88
|
+ <template v-slot:footer>
|
|
|
89
|
+ <view class="value">{{ applyDelayForm.customerName }}</view>
|
|
|
90
|
+ </template>
|
|
|
91
|
+ </uni-list-item>
|
|
|
92
|
+ <uni-list-item title="发货数量">
|
|
|
93
|
+ <template v-slot:footer>
|
|
|
94
|
+ <view class="value">{{ applyDelayForm.quantity }}</view>
|
|
|
95
|
+ </template>
|
|
|
96
|
+ </uni-list-item>
|
|
|
97
|
+ </uni-list>
|
|
|
98
|
+ </view>
|
|
|
99
|
+ <view class="dialog_footer">
|
|
|
100
|
+ <button class="btn confirm" type="primary" @click="onApplyDelaySave">保存</button>
|
|
|
101
|
+ </view>
|
|
|
102
|
+ </view>
|
|
|
103
|
+ </uni-popup>
|
|
43
|
104
|
</view>
|
|
44
|
105
|
</template>
|
|
45
|
106
|
|
|
...
|
...
|
@@ -48,6 +109,7 @@ import { getDetailApi, saveSignInTicket, checkApi } from '@/api/invoice.js' |
|
48
|
109
|
import Product from './product.vue'
|
|
49
|
110
|
import DetailButtons from '@/components/detail-buttons/index.vue'
|
|
50
|
111
|
import FileUpload from '@/components/file-upload/index.vue'
|
|
|
112
|
+import { getShipmentPlanDetailApi, createApi } from '@/api/delay_invoice.js'
|
|
51
|
113
|
|
|
52
|
114
|
export default {
|
|
53
|
115
|
name: 'InvoiceDetail',
|
|
...
|
...
|
@@ -61,7 +123,7 @@ export default { |
|
61
|
123
|
{ text: '填写实发数', visible: true, variant: 'outline', event: 'fill' },
|
|
62
|
124
|
{ text: '上传签收单据', visible: true, variant: 'primary', event: 'upload' },
|
|
63
|
125
|
],
|
|
64
|
|
- uploadFile: { id: '', name: '' },
|
|
|
126
|
+ uploadFile: { id: '', name: '' },
|
|
65
|
127
|
}
|
|
66
|
128
|
},
|
|
67
|
129
|
computed: {
|
|
...
|
...
|
@@ -107,8 +169,8 @@ export default { |
|
107
|
169
|
if (typeof fn === 'function') fn()
|
|
108
|
170
|
},
|
|
109
|
171
|
// onEdit() {
|
|
110
|
|
- // const id = this.form.id || this.form.code
|
|
111
|
|
- // if (id) uni.navigateTo({ url: `/pages/invoice/modify?id=${id}` })
|
|
|
172
|
+ // const id = this.form.id || this.form.code
|
|
|
173
|
+ // if (id) uni.navigateTo({ url: `/pages/invoice/modify?id=${id}` })
|
|
112
|
174
|
// },
|
|
113
|
175
|
async onFill() {
|
|
114
|
176
|
const id = this.form.id || this.form.code;
|
|
...
|
...
|
@@ -121,19 +183,19 @@ export default { |
|
121
|
183
|
if (id) uni.navigateTo({ url: `/pages/invoice/fill?id=${id}&customerName=${this.form.customerName}` })
|
|
122
|
184
|
},
|
|
123
|
185
|
onUpload() {
|
|
124
|
|
- this.$refs.uploadPopup && this.$refs.uploadPopup.open()
|
|
|
186
|
+ this.$refs.uploadPopup && this.$refs.uploadPopup.open()
|
|
125
|
187
|
},
|
|
126
|
188
|
closeUploadInfo() {
|
|
127
|
189
|
this.uploadFile = { id: '', name: '' };
|
|
128
|
|
- this.$refs.uploadPopup && this.$refs.uploadPopup.close()
|
|
129
|
|
- },
|
|
|
190
|
+ this.$refs.uploadPopup && this.$refs.uploadPopup.close()
|
|
|
191
|
+ },
|
|
130
|
192
|
async onUploadSave() {
|
|
131
|
193
|
console.log('onUploadSave__this.uploadFile', this.uploadFile)
|
|
132
|
194
|
if (!this.uploadFile.id) {
|
|
133
|
195
|
uni.showToast({
|
|
134
|
|
- title: '请上传签收单据',
|
|
135
|
|
- icon: 'none'
|
|
136
|
|
- })
|
|
|
196
|
+ title: '请上传签收单据',
|
|
|
197
|
+ icon: 'none'
|
|
|
198
|
+ })
|
|
137
|
199
|
return
|
|
138
|
200
|
}
|
|
139
|
201
|
const params = {
|
|
...
|
...
|
@@ -148,6 +210,50 @@ export default { |
|
148
|
210
|
} catch (e) {
|
|
149
|
211
|
uni.showToast({ title: (e && e.msg) || '保存失败', icon: 'none' })
|
|
150
|
212
|
}
|
|
|
213
|
+ },
|
|
|
214
|
+ applyDelayFun(id) {
|
|
|
215
|
+ getShipmentPlanDetailApi(id).then(res => {
|
|
|
216
|
+ if (res && res.data) {
|
|
|
217
|
+ console.log('handleApplyDelay__res.data', res.data)
|
|
|
218
|
+ this.applyDelayForm = { ...res.data };
|
|
|
219
|
+ this.$refs.applyDelayPopup && this.$refs.applyDelayPopup.open();
|
|
|
220
|
+ }
|
|
|
221
|
+ })
|
|
|
222
|
+ },
|
|
|
223
|
+ closeApplyDelay() {
|
|
|
224
|
+ this.$refs.applyDelayPopup && this.$refs.applyDelayPopup.close();
|
|
|
225
|
+ },
|
|
|
226
|
+ async onApplyDelaySave() {
|
|
|
227
|
+ console.log('onApplyDelaySave__this.applyDelayForm', this.applyDelayForm)
|
|
|
228
|
+ if (!this.applyDelayForm.applyShipmentDate) {
|
|
|
229
|
+ uni.showToast({ title: '请选择现申请发货日期', icon: 'none' })
|
|
|
230
|
+ return
|
|
|
231
|
+ }
|
|
|
232
|
+ const delayedShipmentDetailList = [this.applyDelayForm].map((r) => {
|
|
|
233
|
+ return {
|
|
|
234
|
+ orderId: r.orderId,
|
|
|
235
|
+ shipmentsPlanDetailId: r.id,
|
|
|
236
|
+ orderSpecId: r.orderSpecId,
|
|
|
237
|
+ deliveryDate: r.shipmentsDate,
|
|
|
238
|
+ applyShipmentDate: r.applyShipmentDate,
|
|
|
239
|
+ applyCount: r.applyCount,
|
|
|
240
|
+ quantity: Number(r.quantity || 0),
|
|
|
241
|
+ delayReason: r.delayReason,
|
|
|
242
|
+ };
|
|
|
243
|
+ });
|
|
|
244
|
+ const params = {};
|
|
|
245
|
+ params.shipmentsOrderId = this.form.id || '';
|
|
|
246
|
+ params.delayedShipmentDetailList = delayedShipmentDetailList;
|
|
|
247
|
+ console.log('onApplyDelaySave__params', params)
|
|
|
248
|
+ try {
|
|
|
249
|
+ await createApi(params)
|
|
|
250
|
+ uni.showToast({ title: '保存成功', icon: 'success' })
|
|
|
251
|
+ // 刷新当前页
|
|
|
252
|
+ this.$refs.applyDelayPopup && this.$refs.applyDelayPopup.close();
|
|
|
253
|
+ this.loadDetail(this.form.id)
|
|
|
254
|
+ } catch (e) {
|
|
|
255
|
+ uni.showToast({ title: (e && e.msg) || '保存失败', icon: 'none' })
|
|
|
256
|
+ }
|
|
151
|
257
|
}
|
|
152
|
258
|
}
|
|
153
|
259
|
}
|
|
...
|
...
|
@@ -235,9 +341,10 @@ export default { |
|
235
|
341
|
color: rgba(0, 0, 0, 0.9);
|
|
236
|
342
|
text-align: right;
|
|
237
|
343
|
word-break: break-all;
|
|
|
344
|
+
|
|
238
|
345
|
&.act {
|
|
239
|
346
|
color: $theme-primary;
|
|
240
|
|
- }
|
|
|
347
|
+ }
|
|
241
|
348
|
|
|
242
|
349
|
}
|
|
243
|
350
|
}
|
|
...
|
...
|
@@ -265,74 +372,213 @@ export default { |
|
265
|
372
|
|
|
266
|
373
|
|
|
267
|
374
|
.dialog {
|
|
268
|
|
- width: 100%;
|
|
269
|
|
- max-height: 70vh;
|
|
270
|
|
- overflow-y: auto;
|
|
271
|
|
- padding: 32rpx 28rpx calc(20rpx + env(safe-area-inset-bottom));
|
|
272
|
|
- background: #fff;
|
|
273
|
|
- border-radius: 20rpx 20rpx 0 0;
|
|
274
|
|
-
|
|
275
|
|
- &_header {
|
|
276
|
|
- position: relative;
|
|
277
|
|
- text-align: center;
|
|
278
|
|
- font-size: 34rpx;
|
|
279
|
|
- font-weight: 600;
|
|
280
|
|
- margin-bottom: 12rpx;
|
|
281
|
|
- color: rgba(0, 0, 0, 0.9);
|
|
282
|
|
- }
|
|
283
|
|
-
|
|
284
|
|
- &_body {
|
|
285
|
|
- padding: 12rpx 4rpx 24rpx;
|
|
286
|
|
- }
|
|
287
|
|
-
|
|
288
|
|
- &_footer {
|
|
289
|
|
- padding-top: 12rpx;
|
|
290
|
|
- display: flex;
|
|
291
|
|
- justify-content: center;
|
|
292
|
|
-
|
|
293
|
|
- .btn {
|
|
294
|
|
- width: 100%;
|
|
295
|
|
- height: 80rpx;
|
|
296
|
|
- line-height: 80rpx;
|
|
297
|
|
- border-radius: 12rpx;
|
|
298
|
|
- font-size: 32rpx;
|
|
299
|
|
- background: $theme-primary;
|
|
300
|
|
- color: #fff;
|
|
301
|
|
-
|
|
302
|
|
- &::after {
|
|
303
|
|
- border: none;
|
|
304
|
|
- }
|
|
305
|
|
- }
|
|
306
|
|
- }
|
|
|
375
|
+ width: 100%;
|
|
|
376
|
+ overflow-y: auto;
|
|
|
377
|
+ padding: 32rpx 28rpx calc(20rpx + env(safe-area-inset-bottom));
|
|
|
378
|
+ background: #fff;
|
|
|
379
|
+ border-radius: 20rpx 20rpx 0 0;
|
|
|
380
|
+
|
|
|
381
|
+ &_header {
|
|
|
382
|
+ position: relative;
|
|
|
383
|
+ text-align: center;
|
|
|
384
|
+ font-size: 34rpx;
|
|
|
385
|
+ font-weight: 600;
|
|
|
386
|
+ margin-bottom: 12rpx;
|
|
|
387
|
+ color: rgba(0, 0, 0, 0.9);
|
|
|
388
|
+ }
|
|
|
389
|
+
|
|
|
390
|
+ &_body {
|
|
|
391
|
+ padding: 12rpx 4rpx 24rpx;
|
|
|
392
|
+ max-height: 70vh;
|
|
|
393
|
+ overflow-y: auto;
|
|
|
394
|
+ }
|
|
|
395
|
+
|
|
|
396
|
+ &_footer {
|
|
|
397
|
+ padding-top: 12rpx;
|
|
|
398
|
+ display: flex;
|
|
|
399
|
+ justify-content: center;
|
|
|
400
|
+
|
|
|
401
|
+ .btn {
|
|
|
402
|
+ width: 100%;
|
|
|
403
|
+ height: 80rpx;
|
|
|
404
|
+ line-height: 80rpx;
|
|
|
405
|
+ border-radius: 12rpx;
|
|
|
406
|
+ font-size: 32rpx;
|
|
|
407
|
+ background: $theme-primary;
|
|
|
408
|
+ color: #fff;
|
|
|
409
|
+
|
|
|
410
|
+ &::after {
|
|
|
411
|
+ border: none;
|
|
|
412
|
+ }
|
|
|
413
|
+ }
|
|
|
414
|
+ }
|
|
307
|
415
|
}
|
|
308
|
416
|
|
|
309
|
417
|
.dialog_close {
|
|
310
|
|
- position: absolute;
|
|
311
|
|
- right: 16rpx;
|
|
312
|
|
- top: -14rpx;
|
|
313
|
|
- width: 64rpx;
|
|
314
|
|
- height: 64rpx;
|
|
315
|
|
- line-height: 64rpx;
|
|
316
|
|
- text-align: center;
|
|
317
|
|
- font-size: 36rpx;
|
|
318
|
|
- color: rgba(0, 0, 0, 0.6);
|
|
|
418
|
+ position: absolute;
|
|
|
419
|
+ right: 16rpx;
|
|
|
420
|
+ top: -14rpx;
|
|
|
421
|
+ width: 64rpx;
|
|
|
422
|
+ height: 64rpx;
|
|
|
423
|
+ line-height: 64rpx;
|
|
|
424
|
+ text-align: center;
|
|
|
425
|
+ font-size: 36rpx;
|
|
|
426
|
+ color: rgba(0, 0, 0, 0.6);
|
|
319
|
427
|
}
|
|
320
|
428
|
|
|
321
|
429
|
.dialog_row {
|
|
322
|
|
- margin-bottom: 24rpx;
|
|
|
430
|
+ margin-bottom: 24rpx;
|
|
323
|
431
|
}
|
|
324
|
432
|
|
|
325
|
433
|
.dialog_label {
|
|
326
|
|
- display: block;
|
|
327
|
|
- margin-bottom: 12rpx;
|
|
328
|
|
- font-size: 28rpx;
|
|
329
|
|
- color: rgba(0, 0, 0, 0.9);
|
|
|
434
|
+ display: block;
|
|
|
435
|
+ margin-bottom: 12rpx;
|
|
|
436
|
+ font-size: 28rpx;
|
|
|
437
|
+ color: rgba(0, 0, 0, 0.9);
|
|
330
|
438
|
}
|
|
331
|
439
|
|
|
332
|
440
|
.upload-show {
|
|
333
|
|
- margin-top: 8rpx;
|
|
334
|
|
- font-size: 26rpx;
|
|
335
|
|
- color: rgba(0, 0, 0, 0.6);
|
|
|
441
|
+ margin-top: 8rpx;
|
|
|
442
|
+ font-size: 26rpx;
|
|
|
443
|
+ color: rgba(0, 0, 0, 0.6);
|
|
|
444
|
+}
|
|
|
445
|
+
|
|
|
446
|
+
|
|
|
447
|
+::v-deep .uni-list {
|
|
|
448
|
+ background: transparent;
|
|
|
449
|
+
|
|
|
450
|
+ .uni-list--border-top {
|
|
|
451
|
+ background-color: transparent !important;
|
|
|
452
|
+ }
|
|
|
453
|
+
|
|
|
454
|
+ &-item {
|
|
|
455
|
+ &__extra-text {
|
|
|
456
|
+ font-size: 32rpx;
|
|
|
457
|
+ }
|
|
|
458
|
+
|
|
|
459
|
+ &__content-title {
|
|
|
460
|
+ font-size: 32rpx;
|
|
|
461
|
+ color: rgba(0, 0, 0, 0.9);
|
|
|
462
|
+ }
|
|
|
463
|
+
|
|
|
464
|
+ &__container {
|
|
|
465
|
+ padding: 32rpx;
|
|
|
466
|
+
|
|
|
467
|
+ .uni-easyinput {
|
|
|
468
|
+
|
|
|
469
|
+ .is-disabled {
|
|
|
470
|
+ background-color: transparent !important;
|
|
|
471
|
+ }
|
|
|
472
|
+
|
|
|
473
|
+ &__placeholder-class {
|
|
|
474
|
+ font-size: 32rpx;
|
|
|
475
|
+ color: rgba(0, 0, 0, 0.4);
|
|
|
476
|
+ }
|
|
|
477
|
+
|
|
|
478
|
+ &__content {
|
|
|
479
|
+ border: none;
|
|
|
480
|
+
|
|
|
481
|
+ &-input {
|
|
|
482
|
+ padding-left: 0 !important;
|
|
|
483
|
+ height: 48rpx;
|
|
|
484
|
+ line-height: 48rpx;
|
|
|
485
|
+ font-size: 32rpx;
|
|
|
486
|
+ }
|
|
|
487
|
+
|
|
|
488
|
+ .content-clear-icon {
|
|
|
489
|
+ font-size: 44rpx !important;
|
|
|
490
|
+ }
|
|
|
491
|
+ }
|
|
|
492
|
+ }
|
|
|
493
|
+
|
|
|
494
|
+ .amount-row {
|
|
|
495
|
+ flex: 1;
|
|
|
496
|
+ display: flex;
|
|
|
497
|
+ align-items: center;
|
|
|
498
|
+
|
|
|
499
|
+ .uni-easyinput {
|
|
|
500
|
+ flex: 1;
|
|
|
501
|
+ }
|
|
|
502
|
+
|
|
|
503
|
+ .unit {
|
|
|
504
|
+ margin-left: 16rpx;
|
|
|
505
|
+ color: rgba(0, 0, 0, 0.9);
|
|
|
506
|
+ }
|
|
|
507
|
+ }
|
|
|
508
|
+
|
|
|
509
|
+ .item-title,
|
|
|
510
|
+ .uni-list-item__content {
|
|
|
511
|
+ flex: none;
|
|
|
512
|
+ min-height: 48rpx;
|
|
|
513
|
+ line-height: 48rpx;
|
|
|
514
|
+ font-size: 32rpx;
|
|
|
515
|
+ position: relative;
|
|
|
516
|
+ width: 200rpx;
|
|
|
517
|
+ margin-right: 32rpx;
|
|
|
518
|
+ color: rgba(0, 0, 0, 0.9);
|
|
|
519
|
+ padding-right: 0;
|
|
|
520
|
+
|
|
|
521
|
+
|
|
|
522
|
+ .required {
|
|
|
523
|
+ color: red;
|
|
|
524
|
+ position: absolute;
|
|
|
525
|
+ top: 50%;
|
|
|
526
|
+ transform: translateY(-50%);
|
|
|
527
|
+ left: -16rpx;
|
|
|
528
|
+ }
|
|
|
529
|
+ }
|
|
|
530
|
+
|
|
|
531
|
+ }
|
|
|
532
|
+
|
|
|
533
|
+ &.select-item {
|
|
|
534
|
+ &.is-empty {
|
|
|
535
|
+ .uni-list-item__extra-text {
|
|
|
536
|
+ color: rgba(0, 0, 0, 0.4) !important;
|
|
|
537
|
+ }
|
|
|
538
|
+ }
|
|
|
539
|
+
|
|
|
540
|
+ &.is-filled {
|
|
|
541
|
+ .uni-list-item__extra-text {
|
|
|
542
|
+ color: rgba(0, 0, 0, 0.9) !important;
|
|
|
543
|
+ }
|
|
|
544
|
+ }
|
|
|
545
|
+
|
|
|
546
|
+ .serial-number-row {
|
|
|
547
|
+ display: flex;
|
|
|
548
|
+ align-items: center;
|
|
|
549
|
+ }
|
|
|
550
|
+
|
|
|
551
|
+ }
|
|
|
552
|
+
|
|
|
553
|
+ &.mgb10 {
|
|
|
554
|
+ margin-bottom: 20rpx;
|
|
|
555
|
+ }
|
|
|
556
|
+
|
|
|
557
|
+ }
|
|
|
558
|
+
|
|
|
559
|
+ .title-header {
|
|
|
560
|
+ background-color: #fff;
|
|
|
561
|
+ display: flex;
|
|
|
562
|
+ align-items: center;
|
|
|
563
|
+ padding: 32rpx 32rpx 22rpx;
|
|
|
564
|
+
|
|
|
565
|
+ &_icon {
|
|
|
566
|
+ width: 32rpx;
|
|
|
567
|
+ height: 28rpx;
|
|
|
568
|
+ margin-right: 16rpx;
|
|
|
569
|
+ }
|
|
|
570
|
+
|
|
|
571
|
+ span {
|
|
|
572
|
+ color: rgba(0, 0, 0, 0.9);
|
|
|
573
|
+ font-size: 32rpx;
|
|
|
574
|
+ line-height: 44rpx;
|
|
|
575
|
+ font-weight: 600;
|
|
|
576
|
+ }
|
|
|
577
|
+ }
|
|
336
|
578
|
}
|
|
337
|
579
|
|
|
|
580
|
+/* 只读 easyinput 根据内容自适应高度 */
|
|
|
581
|
+::v-deep .uni-list-item__container {
|
|
|
582
|
+ align-items: flex-start;
|
|
|
583
|
+}
|
|
338
|
584
|
</style> |
...
|
...
|
|