28 lines
764 B
TypeScript
28 lines
764 B
TypeScript
/*
|
|
* @Description :
|
|
* @Version : 1.0
|
|
* @Author : Shiming
|
|
* @Date : 2022-01-07 13:27:10
|
|
* @LastEditors : Shiming
|
|
* @LastEditTime : 2022-02-24 10:20:23
|
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\contract-management\\components\\template\\template.component.ts
|
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
|
*/
|
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
import { ModalHelper, _HttpClient } from '@delon/theme';
|
|
|
|
@Component({
|
|
selector: 'app-supply-management-template',
|
|
templateUrl: './template.component.html',
|
|
})
|
|
export class ContractManagementTemplateComponent implements OnInit {
|
|
selectedIndex = 0;
|
|
|
|
constructor(private http: _HttpClient, private modal: ModalHelper) { }
|
|
|
|
ngOnInit(): void { }
|
|
|
|
|
|
}
|