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.
33 lines
1.0 KiB
33 lines
1.0 KiB
/* |
|
* @Descripttion: |
|
* @version: |
|
* @Author: sueRimn |
|
* @Date: 2020-12-25 10:19:31 |
|
* @LastEditors: sueRimn |
|
* @LastEditTime: 2020-12-25 14:53:46 |
|
*/ |
|
import { Component, OnInit } from '@angular/core'; |
|
import { FormControl } from '@angular/forms'; |
|
|
|
@Component({ |
|
selector: 'app-plan-record', |
|
templateUrl: './plan-record.component.html', |
|
styleUrls: ['./plan-record.component.scss'] |
|
}) |
|
export class PlanRecordComponent implements OnInit { |
|
|
|
constructor() { } |
|
|
|
ngOnInit(): void { |
|
} |
|
selected = new FormControl(0); //选项卡 实例 |
|
level//类型 |
|
js//组织机构 |
|
addtime//时间 |
|
tableDate=[ |
|
{level:"Ⅰ级预案",option:"更新",orgication:"浦东支队",unitstate:"已通过",addname:"赵信",addtime:"2020-12-15 10:36:24"}, |
|
{level:"消火栓",option:"新增",orgication:"闵行支队",unitstate:"已拒绝",addname:"张三",addtime:"2020-12-15 10:36:24"}, |
|
{level:"天然取水点",option:"删除",orgication:"上海总队",unitstate:"已拒绝",addname:"王五",addtime:"2020-12-15 10:36:24"} |
|
] |
|
|
|
}
|
|
|