summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app
diff options
context:
space:
mode:
authorguochuyicmri <guochuyi@chinamobile.com>2019-05-09 18:49:04 +0800
committerguochuyicmri <guochuyi@chinamobile.com>2019-05-09 18:49:07 +0800
commit5b346094ab12d2561471ec15122bdce2f840237c (patch)
tree059e30f9094a7ce9ff62c1683757d9be96224217 /usecaseui-portal/src/app
parent88fb2fed36e33ddb7e22dd948afeb0198adbe56b (diff)
Package management interface development
Change-Id: I32c02dd5efdea663071238ff7d7dbc47c02f78c5 Issue-ID: USECASEUI-211 Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app')
-rw-r--r--usecaseui-portal/src/app/services/onboard-vnf-vm/onboard-vnf-vm.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/usecaseui-portal/src/app/services/onboard-vnf-vm/onboard-vnf-vm.component.ts b/usecaseui-portal/src/app/services/onboard-vnf-vm/onboard-vnf-vm.component.ts
index fb6684ce..a10996de 100644
--- a/usecaseui-portal/src/app/services/onboard-vnf-vm/onboard-vnf-vm.component.ts
+++ b/usecaseui-portal/src/app/services/onboard-vnf-vm/onboard-vnf-vm.component.ts
@@ -217,13 +217,13 @@ export class OnboardVnfVmComponent implements OnInit {
case 'VNF':
console.log(this.vnfPkgId);
// this.handleUpload('/api/vnfpkgm/v1/vnf_packages/'+this.vnfPkgId+'/package_content',tab);
- this.handleUpload(this.url.vnf.replace("*_*",this.nsdInfoId), tab);
+ this.handleUpload(this.url.vnf.replace("*_*",this.vnfPkgId), tab);
this.getTableVnfData()
break
case 'PNF':
console.log(this.pnfdInfoId);
// this.handleUpload('/api/nsd/v1/pnf_descriptors/'+this.pnfdInfoId+'/pnfd_content',tab);
- this.handleUpload(this.url.pnf.replace("*_*",this.nsdInfoId), tab);
+ this.handleUpload(this.url.pnf.replace("*_*",this.pnfdInfoId), tab);
this.getTablePnfData();
break
}
id='n213' href='#n213'>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