cat-qw-lib 0.41.18 → 0.41.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/fesm2022/cat-qw-lib.mjs
CHANGED
|
@@ -3433,12 +3433,16 @@ class DdAdminItemFormComponent {
|
|
|
3433
3433
|
}
|
|
3434
3434
|
}
|
|
3435
3435
|
loadPropertyOption() {
|
|
3436
|
+
console.log("1");
|
|
3436
3437
|
this.subscriptions.add(this.dictionaryQuery.selectPropertyData().subscribe((res) => {
|
|
3438
|
+
console.log("2");
|
|
3437
3439
|
if (res) {
|
|
3440
|
+
console.log("3", res);
|
|
3438
3441
|
if (res?.properties?.length) {
|
|
3439
3442
|
res.properties.forEach((property) => {
|
|
3440
3443
|
this.propertyOptions.push({ label: `${res.name}.${property}`, value: `${res.name}.${property}` });
|
|
3441
3444
|
});
|
|
3445
|
+
console.log("3", this.propertyOptions);
|
|
3442
3446
|
}
|
|
3443
3447
|
if (res?.childApis?.length) {
|
|
3444
3448
|
res.childApis.forEach((childApi) => {
|
|
@@ -3446,6 +3450,7 @@ class DdAdminItemFormComponent {
|
|
|
3446
3450
|
this.propertyOptions.push({ label: `${res.name}.${childApi.name}.${property}`, value: `${res.name}.${childApi.name}.${property}` });
|
|
3447
3451
|
});
|
|
3448
3452
|
});
|
|
3453
|
+
console.log("4", this.propertyOptions);
|
|
3449
3454
|
}
|
|
3450
3455
|
}
|
|
3451
3456
|
}));
|
|
@@ -3523,6 +3528,7 @@ class DdAdminFormComponent extends BaseFormComponent {
|
|
|
3523
3528
|
this.baseStore.setIsApiValidated(null);
|
|
3524
3529
|
this.init();
|
|
3525
3530
|
this.sidebarVisibility = new Array(this.record.dictionaryItems.length).fill(false);
|
|
3531
|
+
console.log(this.record);
|
|
3526
3532
|
if (this.record.queueID) {
|
|
3527
3533
|
console.log(this.record.queueID);
|
|
3528
3534
|
this.handleGetProperties(this.record.queueID);
|