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.
19 lines
416 B
19 lines
416 B
4 years ago
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-create-test-score',
|
||
|
templateUrl: './create-test-score.component.html',
|
||
|
styleUrls: ['./create-test-score.component.scss']
|
||
|
})
|
||
|
export class CreateTestScoreComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
selectedTab:number = 1 //选中的选项卡
|
||
|
selectTab(index){
|
||
|
this.selectedTab = index
|
||
|
}
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
|
||
|
}
|