You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
604 B
24 lines
604 B
5 years ago
|
import { Component, OnInit } from '@angular/core';
|
||
|
// import { BasicinfoComponent } from '../basicinfo/basicinfo.component'
|
||
|
import { Router,ActivatedRoute } from '@angular/router'
|
||
|
import {MTokenK1Service} from '../../m-token-k1/m-token-k1.service' //引入服务
|
||
|
|
||
|
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-edit-unit-info',
|
||
|
templateUrl: './edit-unit-info.component.html',
|
||
|
styleUrls: ['./edit-unit-info.component.scss']
|
||
|
})
|
||
|
export class EditUnitInfoComponent implements OnInit {
|
||
|
|
||
|
constructor(private router:Router,private route:ActivatedRoute,public mToken: MTokenK1Service) { }
|
||
|
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|