...
|
...
|
@@ -200,7 +200,7 @@ |
200
|
200
|
compare: '',
|
201
|
201
|
value: '',
|
202
|
202
|
});
|
203
|
|
- const editTriggerData = reactive<IAddTrigger>({
|
|
203
|
+ let editTriggerData = reactive<IAddTrigger>({
|
204
|
204
|
triggerType: '',
|
205
|
205
|
entityId: '请选择设备',
|
206
|
206
|
touchWay: '请选择触发方式',
|
...
|
...
|
@@ -208,19 +208,25 @@ |
208
|
208
|
compare: '',
|
209
|
209
|
value: '',
|
210
|
210
|
});
|
211
|
|
- const addConditionData = reactive<IAddCondition>({
|
212
|
|
- triggerType: '',
|
213
|
|
- entityId: '',
|
|
211
|
+ const editConditionData = reactive<IAddCondition>({
|
|
212
|
+ entityId: '请选择设备',
|
214
|
213
|
createTime: '',
|
215
|
214
|
updateTime: '',
|
|
215
|
+ triggerType: '',
|
216
|
216
|
compare: '',
|
217
|
217
|
value: '',
|
218
|
218
|
});
|
219
|
|
- const editConditionData = reactive<IAddCondition>({
|
|
219
|
+ const editActionData = reactive<IAddAction>({
|
|
220
|
+ outTarget: '',
|
220
|
221
|
entityId: '请选择设备',
|
|
222
|
+ command: '请输入执行命令',
|
|
223
|
+ sceneLinkageId: '',
|
|
224
|
+ });
|
|
225
|
+ const addConditionData = reactive<IAddCondition>({
|
|
226
|
+ triggerType: '',
|
|
227
|
+ entityId: '',
|
221
|
228
|
createTime: '',
|
222
|
229
|
updateTime: '',
|
223
|
|
- triggerType: '',
|
224
|
230
|
compare: '',
|
225
|
231
|
value: '',
|
226
|
232
|
});
|
...
|
...
|
@@ -230,12 +236,6 @@ |
230
|
236
|
command: '',
|
231
|
237
|
sceneLinkageId: '',
|
232
|
238
|
});
|
233
|
|
- const editActionData = reactive<IAddAction>({
|
234
|
|
- outTarget: '',
|
235
|
|
- entityId: '请选择设备',
|
236
|
|
- command: '请输入执行命令',
|
237
|
|
- sceneLinkageId: '',
|
238
|
|
- });
|
239
|
239
|
const addTriggerPushData = ref<[]>([]);
|
240
|
240
|
const addConditionPushData = ref<[]>([]);
|
241
|
241
|
const addActionPushData = ref<[]>([]);
|
...
|
...
|
@@ -261,8 +261,7 @@ |
261
|
261
|
const newConditionFilterMap = ref<[]>([]);
|
262
|
262
|
const newActionFilterMap = ref<[]>([]);
|
263
|
263
|
let filterNewConditionArr = [];
|
264
|
|
- let filterNewActionArr = [];
|
265
|
|
- const pushEditArray = [];
|
|
264
|
+ const pushEditArray = ref<any>([{}]);
|
266
|
265
|
const pushEditConditionArray = [];
|
267
|
266
|
const pushEditActionArray = [];
|
268
|
267
|
let filterArrayTrigger = [];
|
...
|
...
|
@@ -291,8 +290,6 @@ |
291
|
290
|
isUpdate.value = !!data?.isUpdate;
|
292
|
291
|
if (!unref(isUpdate)) {
|
293
|
292
|
try {
|
294
|
|
- filterNewActionArr = [];
|
295
|
|
- filterNewActionArr.length = 0;
|
296
|
293
|
refTriggerChildData = {};
|
297
|
294
|
refConditionChildData = {};
|
298
|
295
|
refActionChildData = {};
|
...
|
...
|
@@ -337,45 +334,44 @@ |
337
|
334
|
return e;
|
338
|
335
|
}
|
339
|
336
|
} else {
|
340
|
|
- newFilterMap.value = [];
|
341
|
|
- newConditionFilterMap.value = [];
|
342
|
|
- newActionFilterMap.value = [];
|
343
|
|
- clearAllArrayFunc();
|
344
|
|
- editTriggerPushData.value = [];
|
345
|
|
- editTriggerPushData.value.length = 0;
|
346
|
|
- editConditionPushData.value = [];
|
347
|
|
- editConditionPushData.value.length = 0;
|
348
|
|
- editActionPushData.value = [];
|
349
|
|
- editActionPushData.value.length = 0;
|
350
|
|
- lastEditRefTriggerChildDataArray.value = [];
|
351
|
|
- getId.value = data.record.id;
|
352
|
|
- getTenantId.value = data.record.tenantId;
|
353
|
|
- await setFieldsValue({
|
354
|
|
- ...data.record,
|
355
|
|
- });
|
356
|
|
- editTriggerPushData.value = data.record.triggers;
|
357
|
|
- editConditionPushData.value = data.record.doConditions;
|
358
|
|
- editActionPushData.value = data.record.doActions;
|
359
|
|
- const options = await screenLinkPageByDeptIdGetDevice({
|
360
|
|
- organizationId: data.record.organizationId,
|
361
|
|
- });
|
362
|
337
|
try {
|
|
338
|
+ newFilterMap.value = [];
|
|
339
|
+ newConditionFilterMap.value = [];
|
|
340
|
+ newActionFilterMap.value = [];
|
|
341
|
+ clearAllArrayFunc();
|
|
342
|
+ editTriggerPushData.value = [];
|
|
343
|
+ editTriggerPushData.value.length = 0;
|
|
344
|
+ editConditionPushData.value = [];
|
|
345
|
+ editConditionPushData.value.length = 0;
|
|
346
|
+ editActionPushData.value = [];
|
|
347
|
+ editActionPushData.value.length = 0;
|
|
348
|
+ lastEditRefTriggerChildDataArray.value = [];
|
|
349
|
+ getId.value = data.record.id;
|
|
350
|
+ getTenantId.value = data.record.tenantId;
|
|
351
|
+ await setFieldsValue({
|
|
352
|
+ ...data.record,
|
|
353
|
+ });
|
|
354
|
+ editTriggerPushData.value = data.record.triggers;
|
|
355
|
+ editConditionPushData.value = data.record.doConditions;
|
|
356
|
+ editActionPushData.value = data.record.doActions;
|
|
357
|
+ const options = await screenLinkPageByDeptIdGetDevice({
|
|
358
|
+ organizationId: data.record.organizationId,
|
|
359
|
+ });
|
363
|
360
|
data.record.triggers.forEach((f1) => {
|
364
|
361
|
options.items?.forEach((f2) => {
|
365
|
|
- if (f2.id == f1.entityId) {
|
|
362
|
+ if (f2.tbDeviceId == f1.entityId) {
|
366
|
363
|
newFilterMap.value.push({
|
367
|
|
- value: f2.id,
|
|
364
|
+ value: f2.tbDeviceId,
|
368
|
365
|
label: f2.name,
|
369
|
366
|
});
|
370
|
367
|
}
|
371
|
368
|
});
|
372
|
369
|
});
|
373
|
|
-
|
374
|
370
|
data.record.doConditions.forEach((f1) => {
|
375
|
371
|
options.items?.forEach((f2) => {
|
376
|
|
- if (f2.id == f1.entityId) {
|
|
372
|
+ if (f2.tbDeviceId == f1.entityId) {
|
377
|
373
|
newConditionFilterMap.value.push({
|
378
|
|
- value: f2.id,
|
|
374
|
+ value: f2.tbDeviceId,
|
379
|
375
|
label: f2.name,
|
380
|
376
|
});
|
381
|
377
|
}
|
...
|
...
|
@@ -383,20 +379,22 @@ |
383
|
379
|
});
|
384
|
380
|
data.record.doActions.forEach((f1) => {
|
385
|
381
|
options.items?.forEach((f2) => {
|
386
|
|
- if (f2.id == f1.entityId) {
|
|
382
|
+ if (f2.tbDeviceId == f1.deviceId) {
|
387
|
383
|
newActionFilterMap.value.push({
|
388
|
|
- value: f2.id,
|
|
384
|
+ value: f2.tbDeviceId,
|
389
|
385
|
label: f2.name,
|
390
|
386
|
});
|
391
|
387
|
}
|
392
|
388
|
});
|
393
|
389
|
});
|
394
|
|
- } catch (e) {}
|
|
390
|
+ } catch (e) {
|
|
391
|
+ return e;
|
|
392
|
+ }
|
395
|
393
|
}
|
396
|
394
|
});
|
397
|
395
|
const getTitle = computed(() => (!unref(isUpdate) ? '新增场景联动' : '编辑场景联动'));
|
398
|
396
|
const handleClose = () => {
|
399
|
|
- pushEditArray.length = 0;
|
|
397
|
+ pushEditArray.value.length = 0;
|
400
|
398
|
lastRefTriggerChildDataArray.value.length = 0;
|
401
|
399
|
lastRefTriggerChildDataArray.value = [];
|
402
|
400
|
lastRefConditionChildDataArray.value.length = 0;
|
...
|
...
|
@@ -431,12 +429,9 @@ |
431
|
429
|
}
|
432
|
430
|
};
|
433
|
431
|
watch(getData, async (newV) => {
|
434
|
|
- // getDeviceInfo.value = newV;
|
435
|
|
- // getDeviceInfo1.value = newV;
|
436
|
|
- // getDeviceInfo2.value = newV;
|
437
|
432
|
const options = await screenLinkPageByDeptIdGetDevice({ organizationId: newV });
|
438
|
433
|
options.items.forEach((v) => {
|
439
|
|
- return (v.value = v.id), (v.label = v.name);
|
|
434
|
+ return (v.value = v.tbDeviceId), (v.label = v.name);
|
440
|
435
|
});
|
441
|
436
|
optionsItemArray.value = options.items;
|
442
|
437
|
updateDeviceIdFunc(optionsItemArray.value);
|
...
|
...
|
@@ -457,7 +452,7 @@ |
457
|
452
|
}
|
458
|
453
|
};
|
459
|
454
|
|
460
|
|
- //触发器方法
|
|
455
|
+ //获取触发器方法
|
461
|
456
|
const refTriggerChildDataFunc = () => {
|
462
|
457
|
try {
|
463
|
458
|
refTriggerChildData = proxy.$refs.refTriggerChild.getFieldsValueFunc();
|
...
|
...
|
@@ -465,7 +460,7 @@ |
465
|
460
|
return e;
|
466
|
461
|
}
|
467
|
462
|
};
|
468
|
|
- //执行条件方法
|
|
463
|
+ //获取执行条件方法
|
469
|
464
|
const refConditionChildDataFunc = () => {
|
470
|
465
|
try {
|
471
|
466
|
refConditionChildData = proxy.$refs.refConditionChild.getFieldsValueFunc();
|
...
|
...
|
@@ -473,7 +468,7 @@ |
473
|
468
|
return e;
|
474
|
469
|
}
|
475
|
470
|
};
|
476
|
|
- //执行动作方法
|
|
471
|
+ //获取执行动作方法
|
477
|
472
|
const refActionChildDataFunc = () => {
|
478
|
473
|
try {
|
479
|
474
|
refActionChildData = proxy.$refs.refActionChild.getFieldsValueFunc();
|
...
|
...
|
@@ -484,101 +479,54 @@ |
484
|
479
|
|
485
|
480
|
const getDefaultValue = () => {
|
486
|
481
|
if (!unref(isUpdate)) {
|
|
482
|
+ refTriggerChildDataFunc();
|
|
483
|
+ refConditionChildDataFunc();
|
|
484
|
+ refActionChildDataFunc();
|
|
485
|
+ const newTriggerArray = addTriggerPushData.value.concat(refTriggerChildData);
|
|
486
|
+ const newConditionArray = addConditionPushData.value.concat(refConditionChildData);
|
|
487
|
+ const newActionArray = addActionPushData.value.concat(refActionChildData);
|
|
488
|
+ newTriggerArray.shift();
|
|
489
|
+ newConditionArray.shift();
|
|
490
|
+ newActionArray.shift();
|
487
|
491
|
delete getAllFormData.id;
|
488
|
492
|
delete getAllFormData.getTenantId;
|
489
|
493
|
triggersObj = {
|
490
|
|
- triggers: lastRefTriggerChildDataArray.value,
|
|
494
|
+ triggers: newTriggerArray,
|
491
|
495
|
};
|
492
|
496
|
conditionsObj = {
|
493
|
|
- doConditions: lastRefConditionChildDataArray.value,
|
|
497
|
+ doConditions: newConditionArray,
|
494
|
498
|
};
|
495
|
499
|
actionsObj = {
|
496
|
|
- doActions: lastRefActionChildDataArray.value,
|
|
500
|
+ doActions: newActionArray,
|
497
|
501
|
};
|
498
|
502
|
Object.assign(getAllFormData, triggersObj, conditionsObj, actionsObj);
|
499
|
503
|
} else {
|
500
|
504
|
refTriggerChildDataFunc();
|
501
|
|
- refConditionChildDataFunc();
|
502
|
|
- refActionChildDataFunc();
|
503
|
|
- pushEditArray.push(refTriggerChildData as never);
|
504
|
|
- pushEditConditionArray.push(refConditionChildData as never);
|
505
|
|
- pushEditActionArray.push(refActionChildData as never);
|
506
|
|
- pushEditArray.forEach((f) => {
|
507
|
|
- editTriggerPushData.value.push(f as never);
|
508
|
|
- });
|
509
|
|
- pushEditConditionArray.forEach((f) => {
|
510
|
|
- editConditionPushData.value.push(f as never);
|
511
|
|
- });
|
512
|
|
- pushEditActionArray.forEach((f) => {
|
513
|
|
- editActionPushData.value.push(f as never);
|
514
|
|
- });
|
515
|
|
- const filterTwoArrayTrigger = editTriggerPushData.value.filter((f) =>
|
516
|
|
- f?.hasOwnProperty('id')
|
517
|
|
- );
|
518
|
|
-
|
519
|
|
- const filterTwoArrayCondition = editConditionPushData.value.filter((f) =>
|
520
|
|
- f?.hasOwnProperty('id')
|
521
|
|
- );
|
522
|
|
-
|
523
|
|
- const filterTwoArrayAction = editActionPushData.value.filter((f) =>
|
524
|
|
- f?.hasOwnProperty('id')
|
525
|
|
- );
|
526
|
|
-
|
527
|
|
- const filterThreeArrayTrigger = editTriggerPushData.value.filter(
|
528
|
|
- (f) => f?.entityId == ''
|
529
|
|
- );
|
530
|
|
- const filterThreeArrayCondition = editConditionPushData.value.filter(
|
531
|
|
- (f) => f?.entityId == ''
|
532
|
|
- );
|
533
|
|
- const filterThreeArrayAction = editActionPushData.value.filter((f) => f?.entityId == '');
|
534
|
|
- const filterFourArrayTrigger = filterThreeArrayTrigger.filter(
|
535
|
|
- (f) => f?.triggerType !== ''
|
536
|
|
- );
|
537
|
|
- const filterFourArrayCondition = filterThreeArrayCondition.filter(
|
538
|
|
- (f) => f?.triggerType !== ''
|
539
|
|
- );
|
540
|
|
-
|
541
|
|
- const filterFourArrayAction = filterThreeArrayAction.filter((f) => f?.outTarget !== '');
|
542
|
|
-
|
543
|
|
- filterFourArrayTrigger.forEach((f) => {
|
544
|
|
- filterTwoArrayTrigger.push(f);
|
545
|
|
- });
|
546
|
|
- filterFourArrayCondition.forEach((f) => {
|
547
|
|
- filterTwoArrayCondition.push(f);
|
548
|
|
- });
|
549
|
|
- filterFourArrayAction.forEach((f) => {
|
550
|
|
- filterTwoArrayAction.push(f);
|
551
|
|
- });
|
552
|
|
-
|
553
|
|
- let editTriggersObj = {
|
554
|
|
- triggers: filterTwoArrayTrigger,
|
555
|
|
- };
|
556
|
|
- let editConditionsObj = {
|
557
|
|
- doConditions: filterTwoArrayCondition,
|
558
|
|
- };
|
559
|
|
- let editActionsObj = {
|
560
|
|
- doActions: filterTwoArrayAction,
|
|
505
|
+ refTriggerChildData = {};
|
|
506
|
+ let newTriggerArray = editTriggerPushData.value.concat(refTriggerChildData);
|
|
507
|
+ newTriggerArray = newTriggerArray.filter((f) => f != {});
|
|
508
|
+ triggersObj = {
|
|
509
|
+ triggers: newTriggerArray,
|
561
|
510
|
};
|
562
|
|
- Object.assign(getAllFormData, editTriggersObj, editConditionsObj, editActionsObj);
|
|
511
|
+ // newTriggerArray.pop();
|
|
512
|
+ console.log(newTriggerArray);
|
|
513
|
+ // conditionsObj = {
|
|
514
|
+ // doConditions: newConditionArray,
|
|
515
|
+ // };
|
|
516
|
+ // actionsObj = {
|
|
517
|
+ // doActions: newActionArray,
|
|
518
|
+ // };
|
|
519
|
+ Object.assign(getAllFormData, triggersObj, conditionsObj, actionsObj);
|
563
|
520
|
}
|
564
|
521
|
};
|
565
|
522
|
|
566
|
523
|
const handleSubmit = async () => {
|
567
|
524
|
if (!unref(isUpdate)) {
|
568
|
|
- addTrigger();
|
569
|
|
- addCondition();
|
570
|
|
- addAction();
|
571
|
525
|
getDefaultValue();
|
572
|
526
|
getValuesFormData = await validateFields();
|
573
|
527
|
if (!getValuesFormData) return;
|
|
528
|
+ if (getAllFormData.doActions.length == 0) return createMessage.error('请填写执行动作');
|
574
|
529
|
Object.assign(getAllFormData, getValuesFormData);
|
575
|
|
- let kongObj = true;
|
576
|
|
- lastRefActionChildDataArray.value.forEach((f) => {
|
577
|
|
- if (Object.keys(f).length == 0) {
|
578
|
|
- kongObj = false;
|
579
|
|
- }
|
580
|
|
- });
|
581
|
|
- if (!kongObj) return createMessage.error('请填写执行动作');
|
582
|
530
|
await screenLinkPageAddApi(getAllFormData);
|
583
|
531
|
createMessage.success('场景联动新增成功');
|
584
|
532
|
closeDrawer();
|
...
|
...
|
@@ -595,43 +543,30 @@ |
595
|
543
|
emit('success');
|
596
|
544
|
}
|
597
|
545
|
};
|
598
|
|
-
|
599
|
|
- //默认添加触发器
|
600
|
|
- const defaultAddTrigger = () => {
|
601
|
|
- if (unref(addTriggerPushData).length == 0) {
|
602
|
|
- setTimeout(() => {
|
603
|
|
- addTrigger();
|
604
|
|
- }, 10);
|
605
|
|
- }
|
606
|
|
- };
|
607
|
546
|
//新增触发器
|
608
|
547
|
const addTrigger = () => {
|
609
|
548
|
if (!unref(isUpdate)) {
|
610
|
|
- unref(addTriggerPushData).push(addTriggerData as never);
|
611
|
549
|
refTriggerChildDataFunc();
|
612
|
|
- filterNewTriggerArr.push(refTriggerChildData as never);
|
613
|
|
- (lastRefTriggerChildDataArray.value as never[]) = filterNewTriggerArr.filter(
|
614
|
|
- (v) => Object.keys(v).length !== 0
|
615
|
|
- );
|
616
|
|
- const newGetTriggerData = lastRefTriggerChildDataArray.value.map((m) => {
|
|
550
|
+ unref(addTriggerPushData).push(refTriggerChildData as never);
|
|
551
|
+ addTriggerPushData.value = addTriggerPushData.value.map((m) => {
|
617
|
552
|
return {
|
618
|
553
|
triggerType: m?.triggerType,
|
619
|
|
- entityId: m?.entityId,
|
|
554
|
+ entityId: m?.entityId || m?.entityId1 || m?.entityId2,
|
620
|
555
|
triggerCondition: {
|
621
|
556
|
condition: [
|
622
|
557
|
{
|
623
|
558
|
key: {
|
624
|
|
- key: 'CO2',
|
625
|
|
- type: 'TIME_SERIES',
|
|
559
|
+ key: m.key1 == null ? 'CO2' : m.key1,
|
|
560
|
+ type: m.type1 == null ? 'TIME_SERIES' : m.type1,
|
626
|
561
|
},
|
627
|
|
- valueType: 'NUMERIC',
|
|
562
|
+ valueType: m.type2 == null ? 'NUMERIC' : m.type2,
|
628
|
563
|
value: {},
|
629
|
564
|
predicate: {
|
630
|
|
- type: 'NUMERIC',
|
|
565
|
+ type: m.type2 == null ? 'NUMERIC' : m.type2,
|
631
|
566
|
value: {
|
632
|
|
- defaultValue: Number(m.value),
|
|
567
|
+ defaultValue: Number(m.value) == null ? 0 : Number(m.value),
|
633
|
568
|
},
|
634
|
|
- operation: m.operation,
|
|
569
|
+ operation: m.operation == null ? 'GREATER_OR_EQUAL' : m.operation,
|
635
|
570
|
},
|
636
|
571
|
},
|
637
|
572
|
],
|
...
|
...
|
@@ -641,7 +576,6 @@ |
641
|
576
|
},
|
642
|
577
|
};
|
643
|
578
|
});
|
644
|
|
- lastRefTriggerChildDataArray.value = newGetTriggerData;
|
645
|
579
|
try {
|
646
|
580
|
setTimeout(() => {
|
647
|
581
|
proxy.$refs.refTriggerChild.updateFieldDeviceId(optionsItemArray.value);
|
...
|
...
|
@@ -651,44 +585,31 @@ |
651
|
585
|
}
|
652
|
586
|
} else {
|
653
|
587
|
refTriggerChildDataFunc();
|
654
|
|
- pushEditArray.push(refTriggerChildData as never);
|
655
|
|
- unref(editTriggerPushData).push(addTriggerData as never);
|
|
588
|
+ unref(editTriggerPushData).push(refTriggerChildData as never);
|
656
|
589
|
}
|
657
|
590
|
};
|
658
|
591
|
const removeTrigger = () => {
|
659
|
592
|
if (!unref(isUpdate)) {
|
660
|
593
|
try {
|
661
|
|
- unref(addTriggerPushData).splice(0, 1);
|
662
|
|
- lastRefTriggerChildDataArray.value.splice(0, 1);
|
|
594
|
+ unref(addTriggerPushData).pop();
|
663
|
595
|
} catch (e) {
|
664
|
596
|
return e;
|
665
|
597
|
}
|
666
|
598
|
} else {
|
667
|
599
|
try {
|
668
|
|
- unref(editTriggerPushData).splice(0, 1);
|
669
|
|
- lastEditRefTriggerChildDataArray.value.pop();
|
|
600
|
+ unref(editTriggerPushData).pop();
|
670
|
601
|
} catch (e) {
|
671
|
602
|
return e;
|
672
|
603
|
}
|
673
|
604
|
}
|
674
|
605
|
};
|
675
|
606
|
|
676
|
|
- //默认添加执行条件
|
677
|
|
- const defaultAddCondition = () => {
|
678
|
|
- if (unref(addConditionPushData).length == 0) {
|
679
|
|
- addCondition();
|
680
|
|
- }
|
681
|
|
- };
|
682
|
607
|
//新增执行条件
|
683
|
608
|
const addCondition = () => {
|
684
|
609
|
if (!unref(isUpdate)) {
|
685
|
|
- unref(addConditionPushData).push(addConditionData as never);
|
686
|
610
|
refConditionChildDataFunc();
|
687
|
|
- filterNewConditionArr.push(refConditionChildData as never);
|
688
|
|
- (lastRefConditionChildDataArray.value as never[]) = filterNewConditionArr.filter(
|
689
|
|
- (v) => Object.keys(v).length !== 0
|
690
|
|
- );
|
691
|
|
- const newGetConditionData = lastRefConditionChildDataArray.value.map((m) => {
|
|
611
|
+ unref(addConditionPushData).push(refConditionChildData as never);
|
|
612
|
+ addConditionPushData.value = addConditionPushData.value.map((m) => {
|
692
|
613
|
return {
|
693
|
614
|
triggerType: m?.triggerType,
|
694
|
615
|
entityId: m?.entityId,
|
...
|
...
|
@@ -699,14 +620,29 @@ |
699
|
620
|
type: 'TIME_SERIES',
|
700
|
621
|
key: 'CO2',
|
701
|
622
|
},
|
702
|
|
- valueType: 'NUMERIC',
|
|
623
|
+ valueType:
|
|
624
|
+ m.type == 'NUMERIC1'
|
|
625
|
+ ? 'NUMERIC'
|
|
626
|
+ : m.type == 'NUMERIC2'
|
|
627
|
+ ? 'NUMERIC'
|
|
628
|
+ : 'NUMERIC',
|
703
|
629
|
value: {},
|
704
|
630
|
predicate: {
|
705
|
|
- type: 'NUMERIC',
|
|
631
|
+ type:
|
|
632
|
+ m.type == 'NUMERIC1'
|
|
633
|
+ ? 'NUMERIC'
|
|
634
|
+ : m.type == 'NUMERIC2'
|
|
635
|
+ ? 'NUMERIC'
|
|
636
|
+ : 'NUMERIC',
|
706
|
637
|
value: {
|
707
|
|
- defaultValue: Number(m.value),
|
|
638
|
+ defaultValue:
|
|
639
|
+ Number(m.value1) == null
|
|
640
|
+ ? 0
|
|
641
|
+ : Number(m.value1) || Number(m.value2) == null
|
|
642
|
+ ? 0
|
|
643
|
+ : Number(m.value2),
|
708
|
644
|
},
|
709
|
|
- operation: m.operation,
|
|
645
|
+ operation: m.operation1 || m.operatio2,
|
710
|
646
|
},
|
711
|
647
|
},
|
712
|
648
|
],
|
...
|
...
|
@@ -716,7 +652,6 @@ |
716
|
652
|
},
|
717
|
653
|
};
|
718
|
654
|
});
|
719
|
|
- lastRefConditionChildDataArray.value = newGetConditionData;
|
720
|
655
|
try {
|
721
|
656
|
setTimeout(() => {
|
722
|
657
|
proxy.$refs.refConditionChild.updateFieldDeviceId(optionsItemArray.value);
|
...
|
...
|
@@ -733,8 +668,7 @@ |
733
|
668
|
const removeCondition = () => {
|
734
|
669
|
if (!unref(isUpdate)) {
|
735
|
670
|
try {
|
736
|
|
- unref(addConditionPushData).splice(0, 1);
|
737
|
|
- lastRefConditionChildDataArray.value.pop();
|
|
671
|
+ unref(addConditionPushData).pop();
|
738
|
672
|
} catch (e) {
|
739
|
673
|
return e;
|
740
|
674
|
}
|
...
|
...
|
@@ -757,12 +691,8 @@ |
757
|
691
|
//新增执行动作
|
758
|
692
|
const addAction = () => {
|
759
|
693
|
if (!unref(isUpdate)) {
|
760
|
|
- unref(addActionPushData).push(addActionData as never);
|
761
|
694
|
refActionChildDataFunc();
|
762
|
|
- filterNewActionArr.push(refActionChildData as never);
|
763
|
|
- (lastRefActionChildDataArray.value as never[]) = filterNewActionArr.filter(
|
764
|
|
- (v) => Object.keys(v).length !== 0
|
765
|
|
- );
|
|
695
|
+ unref(addActionPushData).push(refActionChildData as never);
|
766
|
696
|
try {
|
767
|
697
|
setTimeout(() => {
|
768
|
698
|
proxy.$refs.refActionChild.updateFieldDeviceId(optionsItemArray.value);
|
...
|
...
|
@@ -779,8 +709,7 @@ |
779
|
709
|
const removeAction = () => {
|
780
|
710
|
if (!unref(isUpdate)) {
|
781
|
711
|
try {
|
782
|
|
- unref(addActionPushData).splice(0, 1);
|
783
|
|
- lastRefActionChildDataArray.value.pop();
|
|
712
|
+ unref(addActionPushData).pop();
|
784
|
713
|
} catch (e) {
|
785
|
714
|
return e;
|
786
|
715
|
}
|
...
|
...
|
@@ -797,8 +726,6 @@ |
797
|
726
|
return {
|
798
|
727
|
updateDeviceIdFunc,
|
799
|
728
|
handleClose,
|
800
|
|
- defaultAddTrigger,
|
801
|
|
- defaultAddCondition,
|
802
|
729
|
newFilterMap,
|
803
|
730
|
newConditionFilterMap,
|
804
|
731
|
newActionFilterMap,
|
...
|
...
|
|