1b8a6627a14679e254f34cb4d165ed9976e27ad5
[usecase-ui.git] /
1 import { Component, OnInit } from '@angular/core';
2 import {NzModalService} from "ng-zorro-antd";
3 import { SlicingBusinessModelComponent } from '../../slicing-business-management/slicing-business-model/slicing-business-model.component';
4 @Component({
5   selector: 'app-nsi-model',
6   templateUrl: './nsi-model.component.html',
7   styleUrls: ['./nsi-model.component.less']
8 })
9 export class NsiModelComponent implements OnInit {
10
11     constructor(
12         private modalService: NzModalService
13     ) {
14     }
15
16   ngOnInit() {
17   }
18     button(){
19         this.modalService.create({nzContent:SlicingBusinessModelComponent});
20         console.log(2222)
21     }
22 }