-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtable2.vue
679 lines (651 loc) · 27.8 KB
/
table2.vue
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
<template>
<a-form-model
ref="setSubForm"
:model="setSubForm"
:rules="setSubRules"
class="lockInfoForm">
<!-- <div class="list-box-1">
<a-form-model-item label="发送中心号" prop="tmnlSendCenterNo" class="item-0">
<a-input
v-model="tmnlSelected.tmnlSendCenterNo"
placeholder="请输入发送中心号"
disabled
/>
</a-form-model-item>
<a-form-model-item label="重复次数" prop="triedTimes" class="item-0">
<a-input
v-model="setSubForm.triedTimes"
placeholder="请输入重复次数"
/>
</a-form-model-item>
</div> -->
<div class="list-box">
<a-form-model-item class="item-0" prop="LockLevel" label="">
<a-radio-group name="radioGroup" v-model="setSubForm.LockLevel" @change="radioGroupCallback">
<a-radio :value="1">
一级锁车
</a-radio>
<a-radio :value="2">
二级锁车
</a-radio>
<a-radio :value="3">
三级锁车
</a-radio>
<a-radio :value="4">
解车
</a-radio>
<a-radio :value="5">
全解车
</a-radio>
</a-radio-group>
</a-form-model-item>
</div>
<!-- <div v-if="setSubForm.LockLevel !== 5"> -->
<div class="list-box">
<a-form-model-item label="" prop="immediatelyv" class="item-2">
<a-checkbox v-model="setSubForm.immediatelyv" @change="immediatelyvChange" :disabled="setSubForm.disabled">
立即锁
</a-checkbox>
</a-form-model-item>
</div>
<div class="list-box">
<a-form-model-item label="" prop="workingHoursv" class="item-2">
<a-checkbox v-model="setSubForm.workingHoursv" @change="workingHoursvChange" :disabled="setSubForm.disabled">
按工作小时数
</a-checkbox>
</a-form-model-item>
<a-form-model-item label="" prop="workingHoursLockTime" class="item-0">
<a-input
:disabled="setSubForm.disabled1"
v-model="setSubForm.workingHoursLockTime"
placeholder="请输入工作时间"
>
<template #suffix>
<span class="suffix-1">(时)</span>
</template>
</a-input>
</a-form-model-item>
</div>
<div class="list-box">
<a-form-model-item label="" prop="datev" class="item-2">
<a-checkbox v-model="setSubForm.datev" @change="datevChange" :disabled="setSubForm.disabled">
预置时间点
</a-checkbox>
</a-form-model-item>
<a-form-model-item label="" prop="dateLockDate" class="item-0">
<a-date-picker
:disabled="setSubForm.disabled2"
:disabled-date="disabledDate"
@change="dateLockDateCallback"
style="width:193px"
v-model="setSubForm.dateLockDate"
show-time
placeholder="预置时间点">
</a-date-picker>
</a-form-model-item>
</div>
<div class="list-box">
<a-form-model-item label="" prop="cycDatev" class="item-2">
<a-checkbox v-model="setSubForm.cycDatev" @change="cycDatevChange" :disabled="setSubForm.disabled">
按循环日期锁车
</a-checkbox>
</a-form-model-item>
<a-form-model-item label="" prop="cycDate" class="item-0">
<a-date-picker
:disabled="setSubForm.disabled3"
style="width:193px"
v-model="setSubForm.cycDate"
show-time
placeholder="选择日期">
</a-date-picker>
</a-form-model-item>
<a-form-model-item label="锁车期数" prop="cycDateLockNum" class="item-0">
<a-select
:disabled="setSubForm.disabled3"
style="width:193px"
v-model="setSubForm.cycDateLockNum"
placeholder="请选择锁车期数"
>
<a-select-option
v-for="cycDateLockNum in 48"
:key="cycDateLockNum">
{{cycDateLockNum}}
</a-select-option>
</a-select>
</a-form-model-item>
</div>
<div class="list-box">
<a-form-model-item label="" prop="areaLockv" class="item-2">
<a-checkbox v-model="setSubForm.areaLockv" @change="areaLockvChange" :disabled="setSubForm.disabled">
按指定位置锁车
</a-checkbox>
</a-form-model-item>
<a-form-model-item label="纬度" prop="areaLockLat" class="item-0 item-1">
<a-input
:disabled="setSubForm.disabled4"
read-only
v-model="setSubForm.areaLockLat"
placeholder="纬度"
/>
</a-form-model-item>
<a-form-model-item label="经度" prop="areaLockLng" class="item-0 item-1">
<a-input
:disabled="setSubForm.disabled4"
read-only
v-model="setSubForm.areaLockLng"
placeholder="经度"
/>
</a-form-model-item>
<a-form-model-item label="半径" prop="areaLockRange" class="item-0 item-1">
<a-input
:disabled="setSubForm.disabled4"
read-only
v-model="setSubForm.areaLockRange"
placeholder="半径"
>
<template #suffix>
<span class="suffix-1">(米)</span>
</template>
</a-input>
</a-form-model-item>
<a-form-model-item class="item-0" >
<a-button style="margin-left:15px" v-if="!setSubForm.disabled4" @click="areaLo">点击画圆</a-button>
<a-button style="margin-left:15px" type="primary" html-type="submit" @click="sendCommMessage">提交</a-button>
</a-form-model-item>
</div>
<div class="list-map" id="container11">
</div>
<!-- </div> -->
</a-form-model>
</template>
<script>
let mapAli = null;
let draw = null;
// import {sendCommMessage, getParaLast,getParaLast1} from '@/api/infodevice'
// import {parseTime, kmxCode} from '@/utils/index'
// import {getToken, jwtDecodeToken} from '@/utils/auth'
// import {getTimeZone} from '@/api/common'
import moment from 'dayjs'
export default {
name:"downGprsDataPrompt",
// props:[
// 'recordData',
// 'send',
// 'tmnlSelected'
// ],
data(){
return {
settmnlData: this.recordData || {},
setSubForm:{
disabled:false,
disabled1:true,
disabled2:true,
disabled3:true,
disabled4:true,
LockLevel:undefined,
LockSetId:undefined,
immediatelyv:undefined,
workingHoursv:undefined,
areaLockv:undefined,
cycDateLockNum:undefined,
cycDatev:undefined,
immediatelyLockLevel:"",
immediatelyLockSetId:"",
workingHoursLockSetId:"",
workingHoursLockLevel:"",
workingHoursLockTime:"",
cycDateLockDates:"",
sendType:this.send,
triedTimes:1,
allUnlockSetId:"F1",
dateLockSetId:"",
dateLockLevel:"",
dateLockDate:"",
dateLockDateStr:"",
cycDate:"",
cycDateLockSetId:"",
cycDateLockLevel:"",
cycDateLockYear:"",
cycDateLockMonth:"",
cycDateLockDay:"",
cycDateLockDay1:"",
areaLockSetId:"",
areaLockLevel:"",
areaLockLat:"",
areaLockLng:"",
areaLockRange:"",
},
setSubRules:{
workingHoursLockTime:[{required:false,message:"请输入工作时间",trigger:"blur"}],
dateLockDate:[{required:false,message:"请选择时间",trigger:"change"}],
cycDate:[{required:false,message:"请选择时间",trigger:"change"}],
cycDateLockNum:[{required:false,message:"请选择锁车期数",trigger:"change"}],
}
}
},
mounted() {
//this.mapaliInit();
//this.getParaLast();
},
methods:{
mapaliInit(){
mapAli = new TYMapOptions({
contentId: 'container11', //必填,地图容器
lnglat: new TYLngLat(114.50, 38.000), //可选 默认ip定位
mapLevel: 12 //可选默认 12
});
TYInitialize(mapAli);
let configOption = new TYConfigOption();
TYMapConfig(configOption);
draw = new TYOverlayOption();
draw.isClearOverlay = true;
draw.isShowMath = false;
draw.callfunc = this.drawPLR;
},
drawPLR(e){
console.log(e)
TYDrawStop(true)
},
getParaLast(){
getParaLast({
vcl_id:"1334000014",
para_id:"TC_0001_00_1",
page_size:10,
page:1,
sys_id:8,
brand_id:8
}).then((response)=>{
console.log(response);
if (response.code == 200) {
this.point = [],
0 == response.vcl_list.length && this.$message.error("暂无位置信息");
for (let r = 0; r < a.vcl_list.length; r++)
for (let i = 0; i < a.vcl_list[r].para_list.length; i++) {
let n = JSON.parse(a.vcl_list[r].para_list[i].para_value);
n.para_name = a.vcl_list[r].para_list[i].para_name,
n.vcl_id = a.vcl_list[r].vcl_id,
n.vcl_NO = a.vcl_list[r].vcl_no,
this.point.push(n)
}
this.addpoints(!0)
this.$message.success(response.message)
} else {
this.$message.error(response.message)
}
}).catch(error => {
this.$message.error('提交失败')
})
},
addpoints: function(e) {
TYClear(),
this.data = [];
for (var t = 0; t < this.point.length; t++) {
var a = new TYMarker({
pointId: "a~" + this.point[t].vcl_id + "," + this.point[t].vcl_NO,
label: new TYLabel({
offset: new TYPixel(25,15)
}),
lnglat: new TYLngLat(Number(this.point[t].Lo),Number(this.point[t].La)),
icon: this.carSrc
});
this.data.push(a)
}
var r = new TYPointOption;
r.pointData = this.data,
r.pointState.isClearOverlay = !0,
r.pointState.isGather = !0,
r.pointState.isSetView = !0;
var i = new TYOverlayEvent;
i.mouseEvent = TYEnumEvent.TY_CLICK,
i.mouseFunc = function(e) {
var t = e.pointId.split("~")[1].split(",")[0]
, a = e.pointId.split(",")[1]
, r = (n.getlockData.vcl_sys_id,
n.getlockData.vcl_dictvb_id,
JSON.parse(n.dataJSon.vcl_list[0].para_list[0].para_value))
, i = r.La
, o = r.Lo;
if (200 == n.dataJSon.code) {
var s = function(t) {
var i = new TYInfoWindowOptions;
i.width = 300,
i.height = 200,
i.offset = new TYPixel(0,-30),
i.content = "机号:" + a + "<br>速度:" + r.Speed + "km/h<br>最新位置:" + t.geocodes[0].description,
i.position = new TYLngLat(e.GPSLngLat.GPSLng,e.GPSLngLat.GPSLat),
i.showShadow = !0,
i.isCustom = !1,
i.enableCloseOnClick = !0,
TYInfoWindow(i)
}
, l = [];
!function(e) {
l[0] = e ? new TYLngLat(e.location.GPSLng,e.location.GPSLat) : new TYLngLat(Number(o),Number(i));
var t = new TYGeoCoderOptions;
t.callback = s,
t.location = l,
t.type = TYEnumGeocoder.TY_NEAR_DESC,
TYGeoCoder(t)
}()
}
}
,
r.pointState.overlayEvent = i;
var n = this;
TYDrawPoint(r)
},
areaLo(){
draw.overlayType = TYEnumOverLay.TY_CIRCLE;
TYDrawOverlay(draw);
},
disabledDate(current) {
return current && current < moment().startOf('day');
},
radioGroupCallback(){
let LockLevel = this.setSubForm.LockLevel;
this.setSubForm.disabled = LockLevel === 5 ? true : false
if(LockLevel === 5){
// 先对表单重置在设置全解车,可能会有更好的方法
this.$refs.setSubForm.resetFields()
this.setSubForm.datev = false;
this.setSubForm.immediatelyv = false;
this.setSubForm.cycDatev = false;
this.setSubForm.areaLockv = false;
this.setSubForm.workingHoursv = false;
this.setSubForm.LockLevel = 5;
}
this.workingHoursvChange(LockLevel);
this.datevChange(LockLevel);
this.cycDatevChange(LockLevel);
this.areaLockvChange(LockLevel);
this.immediatelyvChange(LockLevel);
},
immediatelyvChange(LockLevel){
let immediatelyv = this.setSubForm.immediatelyv;
if(immediatelyv){
this.setSubForm.immediatelyLockSetId = LockLevel < 4 ? "01" : "11";
}else{
this.setSubForm.immediatelyLockSetId = "";
}
},
workingHoursvChange(LockLevel){
let workingHoursv = this.setSubForm.workingHoursv;
if(workingHoursv){
this.setSubForm.disabled1 = false;
this.setSubForm.workingHoursLockSetId = LockLevel < 4 ? "02" : "12";
this.setSubRules.workingHoursLockTime[0].required = LockLevel > 4 ? false : true;
}else{
this.setSubForm.disabled1 = true;
this.setSubForm.workingHoursLockSetId = "";
this.setSubForm.workingHoursLockTime = "";
this.setSubRules.workingHoursLockTime[0].required = false;
}
},
datevChange(LockLevel){
let datev = this.setSubForm.datev;
if(datev){
this.setSubForm.disabled2 = false;
this.setSubForm.dateLockSetId = LockLevel < 4 ? "04" : "14";
this.setSubRules.dateLockDate[0].required = LockLevel >= 4 ? false : true;
}else{
this.setSubForm.disabled2 = true;
this.setSubForm.dateLockSetId = "";
this.setSubRules.dateLockDate[0].required = false;
}
},
cycDatevChange(LockLevel){
let cycDatev = this.setSubForm.cycDatev;
if(cycDatev){
this.setSubForm.disabled3 = false;
this.setSubForm.cycDateLockSetId = LockLevel < 4 ? "07" : "17";
this.setSubRules.cycDateLockNum[0].required = LockLevel >= 4 ? false : true;
this.setSubRules.cycDate[0].required = LockLevel >= 4 ? false : true;
}else{
this.setSubForm.disabled3 = true;
this.setSubForm.cycDateLockSetId = "";
this.setSubRules.cycDateLockNum[0].required = false;
this.setSubRules.cycDate[0].required = false;
}
},
areaLockvChange(LockLevel){
let areaLockv = this.setSubForm.areaLockv;
if(areaLockv){
this.setSubForm.disabled4 = false;
this.setSubForm.areaLockSetId = LockLevel < 4 ? "03" : "13";
}else{
this.setSubForm.disabled4 = true;
this.setSubForm.areaLockSetId = "";
this.setSubForm.areaLockLat = "";
this.setSubForm.areaLockLng = "";
this.setSubForm.areaLockRange = "";
}
},
dateLockDateCallback(date, dateString){
this.setSubForm.dateLockDateStr = dateString;
},
cycDateLockNumCallback(num, date){
let arr = [];
for(let i =0;i<num;i++){
arr.push(date)
}
this.setSubForm.cycDateLockDay = arr;
},
paramsFilter(){
let LockLevel = this.setSubForm.LockLevel;
let cycDate = this.setSubForm.cycDate;
let cycDateLockNum = this.setSubForm.cycDateLockNum ;
let cycDatev = this.setSubForm.cycDatev;
if(cycDate && cycDateLockNum && cycDatev){
console.log(cycDate, cycDateLockNum, cycDatev,parseTime(new Date(cycDate)))
let time = parseTime(new Date(cycDate));
let timeArr = (time.slice(0,10)).split('-');
this.setSubForm.cycDateLockYear = timeArr[0];
this.setSubForm.cycDateLockMonth = timeArr[1];
this.cycDateLockNumCallback(cycDateLockNum, timeArr[2]);
}
return {
allUnlockSetId:LockLevel=== 5 ? "F1" : "",
areaLockAffirm: LockLevel=== 5 ? "" : 0,
areaLockLat: LockLevel=== 5 ? "" : this.setSubForm.areaLockLat,
areaLockLevel: LockLevel=== 5 ? "" : LockLevel,
areaLockLng: LockLevel=== 5 ? "" : this.setSubForm.areaLockLng,
areaLockPwdCardinality: LockLevel=== 5 ? "" : 8,
areaLockRange: LockLevel=== 5 ? "" : this.setSubForm.areaLockRange,
areaLockSetId: LockLevel=== 5 ? "" : this.setSubForm.areaLockSetId,
cycDateLockAffirm: LockLevel=== 5 ? "" : 0,
cycDateLockDay: LockLevel=== 5 ? [] : this.setSubForm.cycDateLockDay,
cycDateLockLevel: LockLevel=== 5 ? "" : LockLevel,
cycDateLockMonth: LockLevel=== 5 ? "" : this.setSubForm.cycDateLockMonth,
cycDateLockPwdCardinality: LockLevel=== 5 ? "" : 8,
cycDateLockSetId: LockLevel=== 5 ? "" : this.setSubForm.cycDateLockSetId,
cycDateLockYear: LockLevel=== 5 ? "" : this.setSubForm.cycDateLockYear,
dateLockAffirm: LockLevel=== 5 ? "" : 0,
dateLockDate: LockLevel=== 5 ? "" : this.setSubForm.dateLockDate,
dateLockLevel: LockLevel=== 5 ? "" : LockLevel,
dateLockPwdCardinality: LockLevel=== 5 ? "" : 8,
dateLockSetId: LockLevel=== 5 ? "" : this.setSubForm.dateLockSetId,
immediatelyLockAffirm: LockLevel=== 5 ? "" : 0,
immediatelyLockLevel: LockLevel=== 5 ? "" : LockLevel,
immediatelyLockPwdCardinality: LockLevel=== 5 ? "" : 8,
immediatelyLockSetId: LockLevel=== 5 ? "" : this.setSubForm.immediatelyLockSetId,
workingHoursLockAffirm: LockLevel=== 5 ? "" : 0,
workingHoursLockLevel: LockLevel=== 5 ? "" : LockLevel,
workingHoursLockPwdCardinality: LockLevel=== 5 ? "" : 8,
workingHoursLockSetId: LockLevel=== 5 ? "" : this.setSubForm.workingHoursLockSetId,
workingHoursLockTime: LockLevel=== 5 ? "" : this.setSubForm.workingHoursLockTime,
}
},
sendCommMessage(){
// 获取级别
let LockLevel = this.setSubForm.LockLevel;
if(!LockLevel){
return this.$message.error("请选择级别")
}
let lockCount = 0;
let arrId = ["areaLockSetId", "cycDateLockSetId", "dateLockSetId", "workingHoursLockSetId", "immediatelyLockSetId"]
for(let i = 0 ;i < arrId.length; i++){
if(this.setSubForm[arrId[i]]){
lockCount = lockCount + 1;
}
}
if(!lockCount && LockLevel !==5){
return this.$message.error("请选择类型")
}
this.$refs.setSubForm.validate((valid) => {
console.log(valid)
if (valid) {
if(this.setSubForm.areaLockv){
if(!this.setSubForm.areaLockLat){
return this.$message.error("请点击画圆")
}
}
try{
let paramContent= {
'infoId': '81',
"seqNo":"000000",
lockCount:LockLevel === 5 ? 1 : lockCount,
...this.paramsFilter()
}
console.log(paramContent,'paramContent')
this.$refs.setSubForm.resetFields()
this.setSubForm.disabled = false;
this.setSubForm.disabled1 = true;
this.setSubForm.disabled2 = true;
this.setSubForm.disabled3 = true;
this.setSubForm.disabled4 = true;
lockCount = 0;
}catch(e){console.log(e)}
}
})
/*
this.$refs.setSubForm.validate((valid) => {
if (valid) {
return new Promise(() => {
let data = {
// 'systemCode': kmxCode(this.settmnlData.vcl_dictvb_id),
// 'accountName': this.$store.getters.userInfo.realname,
// 'accountPwd': '123',
// 'jsonVersion': '1.0',
// 'infoid': '81',
'orderList': {
// 'encodeFlag': '2',
// 'brandId': this.settmnlData.vcl_dictvb_id,
// 'model': this.settmnlData.vcl_dictvt_id,
// 'vclId': this.tmnlSelected.vclId,
// 'tmnlId': this.tmnlSelected.tmnlId,
// 'imei': this.tmnlSelected.tmnlImei,
// 'simNo': this.tmnlSelected.tmnlSimNo,
// 'softwareVersion':this.tmnlSelected.tmnlSoftwareVersion,
// 'sendType': this.setSubForm.sendType,
// 'sendCenterNo': this.tmnlSelected.tmnlSendCenterNo,
// 'setTime': parseTime(new Date()),
// //'timeOut': "0",
// //'timingSendTime': parseTime(new Date(this.setSubForm.timingSendTime)),
// 'triedTimes': this.setSubForm.triedTimes,
// 'onlyCode': "uuid",
// 'timeOver': "0",
'paramContent': {
'infoId': '81',
"seqNo":"000000",
lockCount:LockLevel === 5 ? 1 : lockCount,
...this.paramsFilter()
}
}
}
sendCommMessage(data).then(response => {
if (response.code == 200) {
this.$message.success(response.message)
this.$refs.setSubForm.resetFields() // 表单重置
this.setSubForm.disabled = false;
lockCount = 0;
} else {
this.$message.error(response.message)
}
}).catch(error => {
this.$message.error('提交失败')
})
})
}
});*/
}
}
}
</script>
<style lang="scss">
.lockInfoForm{
height: 500px;
overflow-y: auto;
overflow-x: hidden;
.dialog-footer{
text-align:right;
margin-top: 40px;
padding:20px
}
.list-1-title{
font-size: 15px;
color: #000;
}
.list-box-1{
display: flex;
flex-wrap: wrap;
.item-0{
display: flex;
flex-basis: 50%;
padding: 0;
.suffix-1{
margin-left: 5px;
line-height: 1;
}
.ant-form-item-label{
width: 100px;
}
.ant-form-item-control-wrapper{
// width: 193px;
}
}
}
.list-map{
width: 100%;
height: 300px;
}
.list-box{
display: flex;
flex-wrap: wrap;
.item-2{
width: 140px;
text-align: left;
}
.item-0{
display: flex;
padding: 0;
.suffix-1{
margin-left: 5px;
line-height: 1;
}
.ant-form-explain{
text-align: left;
}
.ant-select-disabled .ant-select-selection{
color: rgba(0, 0, 0, 0.25);
background-color: #f5f5f5;
cursor: not-allowed;
opacity: 1;
}
.ant-form-item-label{
width: 100px;
}
.ant-form-item-control-wrapper{
// width: 193px;
}
}
.item-1{
.ant-form-item-label{
width: 55px;
}
.ant-form-item-control-wrapper{
width: 120px;
}
}
}
}
</style>