summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management/nsi-model/nsi-model.component.ts
blob: 1b8a6627a14679e254f34cb4d165ed9976e27ad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { Component, OnInit } from '@angular/core';
import {NzModalService} from "ng-zorro-antd";
import { SlicingBusinessModelComponent } from '../../slicing-business-management/slicing-business-model/slicing-business-model.component';
@Component({
  selector: 'app-nsi-model',
  templateUrl: './nsi-model.component.html',
  styleUrls: ['./nsi-model.component.less']
})
export class NsiModelComponent implements OnInit {

    constructor(
        private modalService: NzModalService
    ) {
    }

  ngOnInit() {
  }
    button(){
        this.modalService.create({nzContent:SlicingBusinessModelComponent});
        console.log(2222)
    }
}