Skip to content
audit.component.ts 1.61 KiB
Newer Older
wangqinghua's avatar
wangqinghua committed
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'jhi-audit',
  templateUrl: './audit.component.html',
  styles: []
})
export class AuditComponent implements OnInit {
  dataSet:any[];
  date = '1';
  constructor() { }

  ngOnInit() {
      this.dataSet = [
          {
              key1 : '系统时间',
              key2 : '用户',
              key3 : 'IP地址',
              key4 : '操作模块',
              key5 : '资源',
              key6 : '详情'
          },
          {
              key1 : '系统时间',
              key2 : '用户',
              key3 : 'IP地址',
              key4 : '操作模块',
              key5 : '资源',
              key6 : '详情'
          },
          {
              key1 : '系统时间',
              key2 : '用户',
              key3 : 'IP地址',
              key4 : '操作模块',
              key5 : '资源',
              key6 : '详情'
          },
          {
              key1 : '系统时间',
              key2 : '用户',
              key3 : 'IP地址',
              key4 : '操作模块',
              key5 : '资源',
              key6 : '详情'
          },
          {
              key1 : '系统时间',
              key2 : '用户',
              key3 : 'IP地址',
              key4 : '操作模块',
              key5 : '资源',
              key6 : '详情'
          },
          {
              key1 : '系统时间',
              key2 : '用户',
              key3 : 'IP地址',
              key4 : '操作模块',
              key5 : '资源',
              key6 : '详情'
          },
      ];
  }

}