2024-12-23 15:13:57 +08:00
|
|
|
import { Component, OnInit } from '@angular/core'
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
template: '<div></div>',
|
|
|
|
})
|
|
|
|
export class CircuitComponent implements OnInit {
|
|
|
|
ngOnInit() {
|
|
|
|
// 跳转到一次接线图绘制页面
|
2024-12-26 17:02:02 +08:00
|
|
|
window.open('https://cdycircuit.saas.dianwutong.com')
|
|
|
|
window.location.href = 'https://cdyconsole.saas.dianwutong.com'
|
2024-12-23 15:13:57 +08:00
|
|
|
}
|
|
|
|
}
|