jingbowen
2 years ago
17 changed files with 87 additions and 36 deletions
@ -0,0 +1,3 @@ |
|||||||
|
<div class="box"> |
||||||
|
<iframe [src]="url" frameborder="0" width="100%" height="100%"></iframe> |
||||||
|
</div> |
@ -0,0 +1,6 @@ |
|||||||
|
.box{ |
||||||
|
width: 100%; |
||||||
|
height: 600px; |
||||||
|
border: 1px solid #6d9cc7; |
||||||
|
box-shadow: 0 0 8px 0 #fff |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
import { Component, Input, OnInit } from '@angular/core'; |
||||||
|
|
||||||
|
@Component({ |
||||||
|
selector: 'app-system-model', |
||||||
|
templateUrl: './system-model.component.html', |
||||||
|
styleUrls: ['./system-model.component.scss'] |
||||||
|
}) |
||||||
|
export class SystemModelComponent implements OnInit { |
||||||
|
@Input() url: any |
||||||
|
|
||||||
|
constructor() { } |
||||||
|
|
||||||
|
ngOnInit(): void { |
||||||
|
|
||||||
|
console.log(this.url) |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue