|
@@ -0,0 +1,45 @@
|
|
|
+import { Component, OnInit, ViewChild } from '@angular/core';
|
|
|
+import { _HttpClient, ModalHelper } from '@delon/theme';
|
|
|
+import { STColumn, STComponent } from '@delon/abc';
|
|
|
+import { SFSchema } from '@delon/form';
|
|
|
+
|
|
|
+@Component({
|
|
|
+ selector: 'app-project-work-implementation-log',
|
|
|
+ templateUrl: './implementation-log.component.html',
|
|
|
+})
|
|
|
+export class ProjectWorkImplementationLogComponent implements OnInit {
|
|
|
+ url = `/user`;
|
|
|
+ searchSchema: SFSchema = {
|
|
|
+ properties: {
|
|
|
+ no: {
|
|
|
+ type: 'string',
|
|
|
+ title: '编号'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
+ @ViewChild('st') st: STComponent;
|
|
|
+ columns: STColumn[] = [
|
|
|
+ { title: '编号', index: 'no' },
|
|
|
+ { title: '调用次数', type: 'number', index: 'callNo' },
|
|
|
+ { title: '头像', type: 'img', width: '50px', index: 'avatar' },
|
|
|
+ { title: '时间', type: 'date', index: 'updatedAt' },
|
|
|
+ {
|
|
|
+ title: '',
|
|
|
+ buttons: [
|
|
|
+
|
|
|
+
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ];
|
|
|
+
|
|
|
+ constructor(private http: _HttpClient, private modal: ModalHelper) { }
|
|
|
+
|
|
|
+ ngOnInit() { }
|
|
|
+
|
|
|
+ add() {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+}
|