|
|
|
/*
|
|
|
|
* @Descripttion:
|
|
|
|
* @version:
|
|
|
|
* @Author: sueRimn
|
|
|
|
* @Date: 2021-03-05 15:57:08
|
|
|
|
* @LastEditors: sueRimn
|
|
|
|
* @LastEditTime: 2021-03-06 08:43:10
|
|
|
|
*/
|
|
|
|
import { Component, OnInit, ViewChild, Inject } from '@angular/core';
|
|
|
|
import { HttpClient } from '@angular/common/http'
|
|
|
|
import { MatTreeFlatDataSource, MatTreeFlattener } from '@angular/material/tree';
|
|
|
|
import { MatPaginator } from '@angular/material/paginator';
|
|
|
|
import { FlatTreeControl } from '@angular/cdk/tree';
|
|
|
|
import { FormControl } from '@angular/forms';
|
|
|
|
import { Router,ActivatedRoute } from '@angular/router'
|
|
|
|
import { PageEvent } from '@angular/material/paginator';
|
|
|
|
import { MatDialogRef, MatDialog, MAT_DIALOG_DATA } from '@angular/material/dialog';
|
|
|
|
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar';
|
|
|
|
import { TreeService } from '../../http-interceptors/tree.service'
|
|
|
|
declare var CryptoJS
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-compang-info',
|
|
|
|
templateUrl: './compang-info.component.html',
|
|
|
|
styleUrls: ['./compang-info.component.scss']
|
|
|
|
})
|
|
|
|
export class CompangInfoComponent implements OnInit{
|
|
|
|
|
|
|
|
constructor(private http: HttpClient,public snackBar: MatSnackBar) {}
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|