Change-Id: I8d53c677252553a53980568b4ba4c957011731c6
Issue-ID: USECASEUI-170
Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
console.log(data);
this.total = data.body.total;
this.tableData = data.body.tableList.map((item)=>{
+ if(typeof item == "string"){
+ item = JSON.parse(item);
+ }
+ if(typeof item["childServiceInstances"] == "string"){
+ item["childServiceInstances"] = JSON.parse(item["childServiceInstances"]);
+ }
if(item["serviceDomain"]=="Network Service"){
item["childServiceInstances"] = item["vnfInfo"].map((vnf)=>{
vnf["serviceDomain"] = "vnf";