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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
| <template>
| <view class="work-reporting">
| <u-navbar title="报工详情" :border-bottom="false" :background="background" :title-size="40" :title-bold="true"
| title-color="#FFFFFF" back-icon-color="#fff">
| <view class="navbar-right" slot="right" @click="searchDevice">
| 搜索设备
| </view>
| </u-navbar>
| <scroll-view :scroll-top="scrollTop" scroll-y="true" class="scroll-Y">
| <view class="form">
| <h3 class="form-title">报工信息</h3>
| <u-icon class="icon_report" size="170rpx" />
| <u-form :model="form" ref="uForm">
| <!--台数-->
| <u-form-item label="台数" prop="qty" required :label-width="180">
| <u-input v-model="form.qty" placeholder="请输入" />
| </u-form-item>
| <!--产出类别-->
| <u-form-item label="产出类别" prop="outputCategoryLabel" required :label-width="180">
| <u-input v-model="form.outputCategoryLabel" placeholder="请选择" />
| </u-form-item>
| <!--片宽-->
| <u-form-item label="片宽" prop="sliceWidth" required
| :label-width="180">
| <u-input v-model="form.sliceWidth" placeholder="请选择" />
| </u-form-item>
| <!--片料数量-->
| <u-form-item label="片料数量" prop="sliceQty" required :label-width="180">
| <u-input v-model="form.sliceQty" placeholder="请输入" />
| </u-form-item>
| </u-form>
| </view>
| <view class="scan-code-feeding">
| <h3 class="form-title">扫码投料</h3>
| <view class="infoform" v-for="(item,index) in infoFormList" :key="'item'+index">
| <p>
| <u-icon class="icon_zl" size="24rpx" />
| <span style="margin-right: 18rpx">剩余重量:</span>
| <u-input :border="true" v-model="item.qtyRequired" label="剩余重量"
| style="width: 450rpx;height: 56rpx;display: inline-flex;background: #F6FAFF;border-radius: 8rpx;border: 1px solid #214DED;align-items: center;"></u-input>
| </p>
| <p>
| <u-icon class="icon_7" size="24rpx" />
| <span>批次号:{{item.lotBatchNo}}</span>
| </p>
| <p>
| <u-icon class="icon_6" size="24rpx" />
| <span>零件名称:{{item.partName}}</span>
| </p>
| <u-divider :use-slot="false" half-width="640"></u-divider>
| <view class="buttonFlex">
| <button class="primary-button" type="primary"
| plain="true" @click="printQrCode(item)">
| <u-icon class="icon_dy" size="32rpx" />
| 标签打印
| </button>
| </view>
| </view>
| </view>
| </scroll-view>
| <u-toast ref="uToast" />
| <view v-if="maskShow" class="uni-mask" @touchmove.stop.prevent="moveHandle" @click="maskclose">
| <scroll-view class="uni-scroll_box" scroll-y @touchmove.stop.prevent="moveHandle" @click.stop="moveHandle">
| <view class="uni-list-box" v-for="(item, index) in listDevice" :key="index" @click="tapQuery(item)">
| <view>
| <view class="uni-list_name">名称:{{ item.name }}</view>
| <view class="uni-list_item">UUID:{{ item.address }}</view>
| </view>
| </view>
| </scroll-view>
| </view>
| </view>
| </template>
|
| <script>
| import UIcon from "../../../uview-ui/components/u-icon/u-icon.vue";
| import {
| dateFormat
| } from "../../../utils/date"
|
| const jcapi = uni.requireNativePlugin("JCSDK-JCApiModule");
|
| // 二维码类型
| const QrCodeType = {
| QrCode: 31,
| PDF417: 32,
| DataMatrix: 33,
| AZTEC: 34
| }
| // 线条类型
| const LineType = {
| Solid: 1, // 实线
| Dotted: 2, // 虚线(默认虚实1:1相间)
| }
| // 换行方式
| const LineModeType = {
| Justified: 1, // 宽高固定,内容自适应(字号/字间距/行间距按比例缩放)
| AutoHeight: 2, // 宽度固定,高度自适应
| Fixed: 4, // 宽高固定,超出部分裁剪
| Adapt: 6, // 宽高固定,内容超过时预设宽高自动缩小
| }
|
| export default {
| name: "work-reporting",
| // import 引入的组件需要注入到对象中才能使用
| components: {
| UIcon
| },
| data() {
| // 这里存放数据
| return {
| background: {
| backgroundColor: '#214DED',
| },
| scrollTop: 0,
| form: {
| clazzType: '', // 班次
| dutyNo: '', // 班次编号
| locationId: '', // 库位id
| operationTaskId: '', // 工单id
| reportTime: '', // 提交时间
| labelNo: '', // 条码编号
| qty: '', // 台数
| drawNo: '', // 图号
| finishQty: '', // 完成数量
| identifyingQr: '', // 线圈车间-过账-扫码结果
| type: '', // 类型选择器:value
| typeLabel: '', // 类型选择器:label
| operationType: '', // 工序类型选择器:value
| operationTypeLabel: '', // 工序类型选择器:label
| outputCategory: '', // 产出类别:value
| outputCategoryLabel: '', // 产出类别:label
| length: '', // 长度,
| siliconSteelCode: '', // 扫码获取厂家信息来料检信息
| sliceWidth: '', // 片宽
| sliceQty: '', // 片料数量
| clampOtherWeight: '', // 夹件及其他重量
| },
| num: '',
| rules: {
| labelNo: [{
| required: true,
| message: '请选择扫码或输入编号',
| trigger: ['blur'],
| }],
| typeLabel: [ // 类型
| {
| required: true,
| message: '请选择类型',
| trigger: ['change'],
| }
| ],
| qty: [ // 台数
| {
| required: true,
| message: '请填写台数',
| trigger: ['blur'],
| },
| // 正则判断只能为数字
| {
| validator: (rule, value, callback) => {
| return this.$u.test.number(value);
| },
| message: '只能为数值',
| trigger: ['blur'],
| },
| ],
| operationTypeLabel: [ // 工序类型
| {
| required: true,
| message: '请选择工序类型',
| trigger: ['change'],
| }
| ],
| finishQty: [ // 完成数量
| {
| required: true,
| message: '请填写完成数量',
| trigger: ['blur'],
| },
| // 正则判断只能为数字
| {
| validator: (rule, value, callback) => {
| return this.$u.test.number(value);
| },
| message: '只能为数值',
| trigger: ['blur'],
| },
| ],
| length: [ // 长度,
| {
| required: true,
| message: '请填写长度',
| trigger: ['blur'],
| },
| // 正则判断只能为数字
| {
| validator: (rule, value, callback) => {
| return this.$u.test.number(value);
| },
| message: '只能为数值',
| trigger: ['blur'],
| },
| ],
| outputCategoryLabel: [ // 片宽
| {
| required: true,
| message: '请填写片宽',
| trigger: ['change'],
| }
| ],
| sliceQty: [ // 片料数量
| {
| required: true,
| message: '请填写片料数量',
| trigger: ['blur'],
| },
| // 正则判断只能为数字
| {
| validator: (rule, value, callback) => {
| return this.$u.test.number(value);
| },
| message: '只能为数值',
| trigger: ['blur'],
| },
| ],
| clampOtherWeight: [ // 夹件及其他重量
| {
| required: true,
| message: '请填写夹件及其他重量',
| trigger: ['blur'],
| },
| // 正则判断只能为数字
| {
| validator: (rule, value, callback) => {
| return this.$u.test.number(value);
| },
| message: '只能为数值',
| trigger: ['blur'],
| },
| ],
| prodWeight: [ // 成品重量
| {
| required: true,
| message: '请填写成品重量',
| trigger: ['blur'],
| },
| // 正则判断只能为数字
| {
| validator: (rule, value, callback) => {
| return this.$u.test.number(value);
| },
| message: '只能为数值',
| trigger: ['blur'],
| },
| ]
| },
| showTypeSelect: false,
| workTypeSelect: false,
| operationTypeSelect: false,
| showOutputCategory: false,
| infoFormList: [],
| hvCoilFormList: [], //箱体高压
| lvCoilFormList: [], //箱体低压
| workOrder: '',
| id: '',
| isSubmit: false,
| show: false,
| deleteIndex: '',
| workTypeList: [], // 类型list
| operationTypeList: [], // 工序类型list
| outputCategoryList: [], // 产出类别
| maskShow: false,
| listDevice: [], //蓝牙设备数据
| isFanAssembly: false, // 是否为风机装配
| isOilChange: false, // 零件名称包含油变
| }
| },
| // 方法集合
| methods: {
| moveHandle() {
|
| },
| maskclose() {
|
| },
| //打印二维码
| async printQrCode(item) {
| const params = {
| rwMatlBindId: item.id
| }
| let res = await this.$u.api.dailyPaper.zongjianLabelInfo(params)
| if (!res.data) {
| this.$refs.uToast.show({
| title: '未查询到该标签信息!',
| type: 'warning '
| })
| return
| }
| // 初始化画板
| jcapi.initDrawingBoard({
| width: 50,
| height: 100,
| rotate: 0
| });
|
| // // 绘制二维码
| jcapi.drawLabelQrCode({
| x: 14.5,
| y: 74,
| width: 20,
| height: 20,
| value: jsonString,
| rotate: 0,
| codeType: QrCodeType.QrCode,
| });
| // 绘制横线 实线8条
| let sum = 4;
| for (let i = 1; i < 13; i++) {
| this.getDrawLabelLine(4, sum, 46, 0.5, 0, LineType.Solid) // 实线
| sum = (i * 6) + 4
| }
| // 二维码大框
| this.getDrawLabelLine(4, 97, 46, 0.5, 0, LineType.Solid) // 实线9
|
| //绘制竖线
| this.getDrawLabelLine(4, 4, 0.5, 97, 0, LineType.Solid) // 竖线1
| this.getDrawLabelLine(20, 4, 0.5, 66, 0, LineType.Solid) // 竖线2
| this.getDrawLabelLine(44.5, 4, 0.5, 97, 0, LineType.Solid) // 竖线2
|
| // 填冲文字标题
| this.getDrawLabelText(5, 5, 20, 20, '编 号:', 3.6, 0, LineModeType.AutoHeight, 0, 0, 0, 1)
| this.getDrawLabelText(5, 11, 20, 20, '工单号:', 3.6, 0, LineModeType.AutoHeight, 0, 0, 0, 1)
| this.getDrawLabelText(5, 17, 20, 20, '牌 号:', 3.6, 0, LineModeType.AutoHeight, 0, 0, 0, 1)
| this.getDrawLabelText(5, 23, 20, 20, '片宽(mm):', 3.6, 0, LineModeType.AutoHeight, 0, 0, 0, 1)
| this.getDrawLabelText(5, 29, 20, 20, '厚度(mm):', 3.6, 0, LineModeType.AutoHeight, 0, 0, 0, 1)
| this.getDrawLabelText(5, 35, 20, 20, '重量(KG):', 3.6, 0, LineModeType.AutoHeight, 0, 0, 0, 1)
| this.getDrawLabelText(5, 41, 20, 20, '长度(m):', 3.6, 0, LineModeType.AutoHeight, 0, 0, 0, 1)
| this.getDrawLabelText(5, 47, 20, 20, '生产人:', 3.6, 0, LineModeType.AutoHeight, 0, 0, 0, 1)
| this.getDrawLabelText(5, 53, 20, 20, '生产时间:', 3.4, 0, LineModeType.AutoHeight, 0, 0, 0, 1)
| this.getDrawLabelText(5, 59, 20, 20, '厂家:', 3.4, 0, LineModeType.AutoHeight, 0, 0, 0, 1)
| this.getDrawLabelText(5, 65, 20, 20, '铁损:', 3.4, 0, LineModeType.AutoHeight, 0, 0, 0, 1)
|
| // // 填冲参数值
| this.getDrawLabelText(22, 5, 35, 12, labelNo, 3, 0, LineModeType.AutoHeight, 0, 0, 0, 0)
| this.getDrawLabelText(22, 11, 35, 12, optaskNo, 3, 0, LineModeType.AutoHeight, 0, 0, 0, 0)
| this.getDrawLabelText(22, 17, 35, 12, grade, 3, 0, LineModeType.AutoHeight, 0, 0, 0, 0)
| this.getDrawLabelText(22, 23, 35, 12, sliceWidth, 3, 0, LineModeType.AutoHeight, 0, 0, 0, 0)
| this.getDrawLabelText(22, 29, 35, 12, thickness, 3, 0, LineModeType.AutoHeight, 0, 0, 0, 0)
| this.getDrawLabelText(22, 35, 35, 12, wweight, 3, 0, LineModeType.AutoHeight, 0, 0, 0, 0)
| this.getDrawLabelText(22, 41, 35, 12, llength, 3, 0, LineModeType.AutoHeight, 0, 0, 0, 0)
| this.getDrawLabelText(22, 47, 35, 12, reportName, 2, 0, LineModeType.AutoHeight, 0, 0, 0, 0)
| this.getDrawLabelText(22, 53, 35, 12, reportTime, 3, 0, LineModeType.AutoHeight, 0, 0, 0, 0)
| this.getDrawLabelText(22, 59, 35, 12, supplierVenderName, 3, 0, LineModeType.AutoHeight, 0, 0, 0, 0)
| this.getDrawLabelText(22, 65, 35, 12, ironLoss, 3, 0, LineModeType.AutoHeight, 0, 0, 0, 0)
|
| // 生成打印数据
| let imageJsonObj = jcapi.generateLabelJson()
| // 设置打印任务
| jcapi.startJob({
| totalCount: 1,
| density: this.printDensity,
| labelType: this.labelType,
| printMode: this.printMode,
| }, function(r) {
| if (r.code == 0) {
| // 打印数据
| jcapi.printData(imageJsonObj, {
| "printQuantity": 1,
| }, function(r) {
| if (r.code == 0) {
| console.log("打印成功")
| } else {
| console.log("打印失败")
| }
| })
| } else {
| console.log("设置打印任务失败")
| }
| })
| },
| tapQuery(item) {
| this.maskShow = false
| // 连接打印机
| let _this = this;
| console.log(item)
| jcapi.openPrinterByDevice({
| address: item.address,
| name: item.name,
| deviceType: item.deviceType // 设备类型:0-蓝牙,1-网络
| }, function(r) {
| uni.showToast({
| title: (r.code == 0) ? "连接成功" : "连接失败",
| duration: 2 * 1000
| })
| if (r.code == 0) {
| _this.connectedDevice = item
| }
| })
| },
| //打印相关
| searchDevice() {
| let _this = this
| uni.openBluetoothAdapter({ // 确认蓝牙是否打开
| success(r) {
| uni.showLoading({
| title: "搜索中..."
| })
| // 未授予蓝牙相关权限和未打开手机定位会搜索不到设备
| jcapi.getBluetoothDevices(function(r) {
| console.log("device:" + JSON.stringify(r))
| // 搜索到设备回调
| uni.hideLoading()
| _this.listDevice = r;
| _this.maskShow = true
| })
| },
| fail(e) {
| uni.showModal({
| confirmText: "打开蓝牙失败"
| })
| console.log("开启蓝牙设备失败" + e)
| }
| })
| }
| },
| onLoad(options) {
| // 初始化SDK
| jcapi.initSDK()
| // 监听页码回调
| jcapi.didReadPrintCountInfo(function(r) {
| console.log(r)
| })
|
| // 监听错误回调
| jcapi.didReadPrintErrorInfo(function(r) {
| console.log(r)
| if (r.code == 23) {
| // 打印机断开连接
| _this.connectedDevice = null
| }
| uni.showToast({
| icon: 'none',
| title: JSON.stringify(r),
| duration: 2 * 1000
| })
| })
| this.workOrder = JSON.parse(decodeURIComponent(options.info))
| console.log(this.workOrder)
| this.$u.api.dailyPaper.productReportDetail({
| id: this.workOrder.id,
| type:""
| }).then((res) => {
| console.log(res)
| })
|
| },
| onReady() {
| this.$refs.uForm.setRules(this.rules);
| }
| }
| </script>
|
| <style scoped lang="scss">
| .uni-list_name {
| font-size: 30rpx;
| color: #333;
| }
|
| .uni-list_item {
| font-size: 24rpx;
| color: #555;
| line-height: 1.5;
| }
|
| .uni-list-box {
| margin: 0 20rpx;
| padding: 15rpx 0;
| border-bottom: 1px #f5f5f5 solid;
| box-sizing: border-box;
| }
|
| .uni-scroll_box {
| height: 70%;
| background: #fff;
| border-radius: 20rpx;
| }
|
| .uni-mask {
| position: fixed;
| top: 0;
| left: 0;
| bottom: 0;
| display: flex;
| align-items: center;
| width: 100%;
| background: rgba(0, 0, 0, 0.6);
| padding: 0 30rpx;
| box-sizing: border-box;
| }
|
| .work-reporting {
| background-color: #e6f0ff;
| width: 100%;
| height: 100vh;
| box-sizing: border-box;
|
| ::v-deep.navbar-right {
| font-weight: 500;
| font-size: 28rpx;
| color: #FFFFFF;
| line-height: 36rpx;
| margin-right: 32rpx;
| }
|
| .scroll-Y {
| width: 100%;
| height: calc(100vh - 270rpx);
|
| .form {
| background: linear-gradient(180deg, #D8E8FF 0%, #FFFFFF 100%);
| border-radius: 10rpx;
| margin: 68rpx 30rpx 0;
| padding: 36rpx 26rpx 0;
| position: relative;
|
| .form-title {
| font-weight: 800;
| font-size: 34rpx;
| color: #1D2541;
| margin-bottom: 30rpx;
| }
|
| .icon_report {
| background-image: url('~@/static/custom/daily/icon_report.png');
| background-repeat: no-repeat;
| background-size: cover;
| height: 170rpx;
| width: 170rpx;
| position: absolute;
| top: -64rpx;
| right: -30rpx;
| }
| }
|
| .scan-code-feeding {
| background: linear-gradient(180deg, #D8E8FF 0%, #F3F8FF 100%);
| border-radius: 10rpx;
| margin: 20rpx 30rpx 68rpx;
| padding: 36rpx 16rpx 58rpx;
| position: relative;
|
| .form-title {
| font-weight: 800;
| font-size: 34rpx;
| color: #1D2541;
| padding-left: 10rpx;
| margin-bottom: 30rpx;
| }
|
| .icon_camera {
| background-image: url('~@/static/custom/daily/icon_camera.png');
| background-repeat: no-repeat;
| background-size: cover;
| height: 82rpx;
| width: 82rpx;
| position: absolute;
| top: 18rpx;
| right: 28rpx;
| }
|
| .infoform {
| background: #FFFFFF;
| border-radius: 10rpx;
| border: 1px solid #EAF2FF;
| box-sizing: border-box;
| padding: 30rpx 24rpx;
| margin-top: 20rpx;
|
| p {
| font-weight: 500;
| font-size: 26rpx;
| color: #333333;
| margin-bottom: 24rpx;
|
| .icon_zl {
| background-image: url('~@/static/custom/daily/icon_zl.png');
| background-repeat: no-repeat;
| background-size: cover;
| height: 24rpx;
| width: 24rpx;
| margin-right: 6rpx;
| margin-bottom: 6rpx;
| vertical-align: middle;
| position: relative;
| }
|
| .icon_7 {
| background-image: url('~@/static/custom/daily/icon_7.png');
| background-repeat: no-repeat;
| background-size: cover;
| height: 24rpx;
| width: 24rpx;
| margin-right: 6rpx;
| margin-bottom: 6rpx;
| vertical-align: middle;
| position: relative;
| }
|
| .icon_6 {
| background-image: url('~@/static/custom/daily/icon_6.png');
| background-repeat: no-repeat;
| background-size: cover;
| height: 24rpx;
| width: 24rpx;
| margin-right: 6rpx;
| margin-bottom: 6rpx;
| vertical-align: middle;
| position: relative;
| }
| }
|
| .buttonFlex {
| display: flex;
| justify-content: flex-end;
| flex-direction: row;
|
| .delete-button {
| height: 66rpx;
| background: #FFFFFF;
| border-radius: 8rpx;
| border: 1px solid #D6655C;
| font-weight: 500;
| font-size: 28rpx;
| color: #D6655C;
| margin: 24rpx 24rpx 0 206rpx;
| line-height: 66rpx;
|
| .icon_del {
| background-image: url('~@/static/custom/daily/icon_del.png');
| background-repeat: no-repeat;
| background-size: cover;
| height: 32rpx;
| width: 32rpx;
| margin-right: 8rpx;
| margin-bottom: 8rpx;
| vertical-align: middle;
| position: relative;
| }
| }
|
| .primary-button {
| height: 66rpx;
| background: #FFFFFF;
| border-radius: 8rpx;
| border: 1px solid #214DED;
| font-weight: 500;
| font-size: 28rpx;
| color: #214DED;
| line-height: 66rpx;
| margin: 24rpx 0 0 0;
|
| .icon_dy {
| background-image: url('~@/static/custom/daily/icon_dy.png');
| background-repeat: no-repeat;
| background-size: cover;
| height: 32rpx;
| width: 32rpx;
| margin-right: 8rpx;
| margin-bottom: 8rpx;
| vertical-align: middle;
| position: relative;
| }
| }
| }
| }
| }
| }
|
| .bottom {
| width: 100vw;
| position: fixed;
| bottom: 60rpx;
|
| .u-button {
| width: 690rpx;
| height: 80rpx;
| background: #214DED;
| border-radius: 8rpx;
| font-weight: 500;
| font-size: 34rpx;
| color: #FFFFFF;
| z-index: 99;
| }
| }
| }
|
| ::v-deep.u-form-item--left__content__label {
| padding-left: 26rpx;
| font-weight: 500;
| font-size: 30rpx;
| color: #4F4F4F;
| line-height: 80rpx;
| }
|
| ::v-deep.u-form-item--left__content--required {
| left: 8rpx;
| top: 0;
| }
| </style>
|
|