From 8d6734e110808243f8f5ffd3b1e18336df4bd9aa Mon Sep 17 00:00:00 2001 From: wangyuerg Date: Thu, 25 Feb 2021 11:13:32 +0800 Subject: style: update the name of the filed Signed-off-by: wangyuerg Change-Id: I904c96593712fd3aa3d8429186ce9ee0bc5121a9 Issue-ID: USECASEUI-527 --- .../slicing-task-model.component.ts | 2 +- .../subnet-params-model/constants.ts | 2 +- .../subnet-params-model.component.ts | 30 ++++++++++++---------- 3 files changed, 19 insertions(+), 15 deletions(-) (limited to 'usecaseui-portal/src/app/views/services') diff --git a/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/slicing-task-model/slicing-task-model.component.ts b/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/slicing-task-model/slicing-task-model.component.ts index e735e0dc..c6d75a30 100644 --- a/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/slicing-task-model/slicing-task-model.component.ts +++ b/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/slicing-task-model/slicing-task-model.component.ts @@ -234,7 +234,7 @@ export class SlicingTaskModelComponent implements OnInit { "sliceProfile_AN_ipAddress", "sliceProfile_AN_logicInterfaceId", "sliceProfile_AN_nextHopInfo", - "tn_connection_links", + "sliceProfile_TN_connection_links", ]); this.slicingSubnet[2].params = { ...this.pick(nsi_nssi_info, [ diff --git a/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/slicing-task-model/subnet-params-model/constants.ts b/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/slicing-task-model/subnet-params-model/constants.ts index 0e0e5503..5667144a 100644 --- a/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/slicing-task-model/subnet-params-model/constants.ts +++ b/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/slicing-task-model/subnet-params-model/constants.ts @@ -57,7 +57,7 @@ export const TRANSFRER_FORM_ITEMS = [ }, { title: "Connection Links", // table - key: "tn_connection_links", // :new + key: "sliceProfile_TN_connection_links", // :new required: false, // combined type: "table-radio", disable: false, diff --git a/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/slicing-task-model/subnet-params-model/subnet-params-model.component.ts b/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/slicing-task-model/subnet-params-model/subnet-params-model.component.ts index 6354f91e..83d16a62 100644 --- a/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/slicing-task-model/subnet-params-model/subnet-params-model.component.ts +++ b/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/slicing-task-model/subnet-params-model/subnet-params-model.component.ts @@ -44,7 +44,7 @@ export class SubnetParamsModelComponent implements OnInit { "CN Endpoint", ]; // Parameters not passed to the back end - notPassPara: string[] = ["tn_connection_links"]; + notPassPara: string[] = ["sliceProfile_TN_connection_links"]; connectionLinkTable: any[] = []; connectionTableHeader: string[] = []; pageSize: number = 2; @@ -131,10 +131,12 @@ export class SubnetParamsModelComponent implements OnInit { this.connectionLinkTable.forEach((item) => { if ( item.hasOwnProperty("linkId") && - typeof this.formData["tn_connection_links"] !== "undefined" && - this.formData["tn_connection_links"] !== "" && - this.formData["tn_connection_links"] !== null && - item["linkId"] === this.formData["tn_connection_links"] + typeof this.formData["sliceProfile_TN_connection_links"] !== + "undefined" && + this.formData["sliceProfile_TN_connection_links"] !== "" && + this.formData["sliceProfile_TN_connection_links"] !== null && + item["linkId"] === + this.formData["sliceProfile_TN_connection_links"] ) { item.checked = true; } else { @@ -269,8 +271,8 @@ export class SubnetParamsModelComponent implements OnInit { // this.connectionLinkTable.forEach((item) => { // item.checked = false; // }); - // this.formData["tn_connection_links"] = null; - this.notPassPara = ["tn_connection_links"]; + // this.formData["sliceProfile_TN_connection_links"] = null; + this.notPassPara = ["sliceProfile_TN_connection_links"]; this.transferFormItems.forEach((item) => { if (item.title === "Connection Links") { item.disable = true; @@ -293,10 +295,12 @@ export class SubnetParamsModelComponent implements OnInit { item.title === "CN Endpoint" ) { if ( - typeof this.formData["tn_connection_links"] !== - "undefined" && - this.formData["tn_connection_links"] !== null && - this.formData["tn_connection_links"] !== "" + typeof this.formData[ + "sliceProfile_TN_connection_links" + ] !== "undefined" && + this.formData["sliceProfile_TN_connection_links"] !== + null && + this.formData["sliceProfile_TN_connection_links"] !== "" ) { item.disable = true; item.required = false; @@ -307,7 +311,7 @@ export class SubnetParamsModelComponent implements OnInit { ); } else { //:todo - this.formData["tn_connection_links"] = ""; + this.formData["sliceProfile_TN_connection_links"] = ""; item.disable = false; item.required = true; this.notPassPara = []; @@ -357,7 +361,7 @@ export class SubnetParamsModelComponent implements OnInit { item.checked = false; } }); - this.formData["tn_connection_links"] = id; // get the selected id + this.formData["sliceProfile_TN_connection_links"] = id; // get the selected id this.judgeTn(); } -- cgit 1.2.3-korg