13 lines
329 B
TypeScript
13 lines
329 B
TypeScript
|
import { Component, OnInit } from '@angular/core'
|
||
|
|
||
|
@Component({
|
||
|
template: '<div></div>',
|
||
|
})
|
||
|
export class CircuitComponent implements OnInit {
|
||
|
ngOnInit() {
|
||
|
// 跳转到一次接线图绘制页面
|
||
|
window.open('https://circuit.saas.dianwutong.com')
|
||
|
window.location.href = 'https://console.saas.dianwutong.com'
|
||
|
}
|
||
|
}
|