1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
| import { Component, OnInit, ViewChild, TemplateRef } from '@angular/core';
| import { NzMessageService, NzModalService } from 'ng-zorro-antd';
| import { _HttpClient } from '@delon/theme';
| import { tap, map } from 'rxjs/operators';
| import {
| SimpleTableComponent,
| SimpleTableColumn,
| SimpleTableData,
| } from '@delon/abc';
|
| @Component({
| selector: 'pro-table-list',
| templateUrl: './table-list.component.html',
| })
| export class ProTableListComponent implements OnInit {
| q: any = {
| pi: 1,
| ps: 10,
| sorter: '',
| status: null,
| statusList: [],
| };
| data: any[] = [];
| loading = false;
| status = [
| { index: 0, text: '关闭', value: false, type: 'default', checked: false },
| {
| index: 1,
| text: '运行中',
| value: false,
| type: 'processing',
| checked: false,
| },
| { index: 2, text: '已上线', value: false, type: 'success', checked: false },
| { index: 3, text: '异常', value: false, type: 'error', checked: false },
| ];
| @ViewChild('st') st: SimpleTableComponent;
| columns: SimpleTableColumn[] = [
| { title: '', index: 'key', type: 'checkbox' },
| { title: '规则编号', index: 'no' },
| { title: '描述', index: 'description' },
| {
| title: '服务调用次数',
| index: 'callNo',
| type: 'number',
| format: (item: any) => `${item.callNo} 万`,
| sorter: (a: any, b: any) => a.callNo - b.callNo,
| },
| {
| title: '状态',
| index: 'status',
| render: 'status',
| filters: this.status,
| filter: () => true,
| },
| {
| title: '更新时间',
| index: 'updatedAt',
| type: 'date',
| sorter: (a: any, b: any) => a.updatedAt - b.updatedAt,
| },
| {
| title: '操作',
| buttons: [
| {
| text: '配置',
| click: (item: any) => this.msg.success(`配置${item.no}`),
| },
| {
| text: '订阅警报',
| click: (item: any) => this.msg.success(`订阅警报${item.no}`),
| },
| ],
| },
| ];
| selectedRows: SimpleTableData[] = [];
| description = '';
| totalCallNo = 0;
| expandForm = false;
|
| constructor(
| private http: _HttpClient,
| public msg: NzMessageService,
| private modalSrv: NzModalService,
| ) {}
|
| ngOnInit() {
| this.getData();
| }
|
| getData() {
| this.loading = true;
| this.q.statusList = this.status
| .filter(w => w.checked)
| .map(item => item.index);
| if (this.q.status !== null && this.q.status > -1)
| this.q.statusList.push(this.q.status);
| this.http
| .get('/rule', this.q)
| .pipe(
| map((list: any[]) =>
| list.map(i => {
| const statusItem = this.status[i.status];
| i.statusText = statusItem.text;
| i.statusType = statusItem.type;
| return i;
| }),
| ),
| tap(() => (this.loading = false)),
| )
| .subscribe(res => (this.data = res));
| }
|
| checkboxChange(list: SimpleTableData[]) {
| this.selectedRows = list;
| this.totalCallNo = this.selectedRows.reduce(
| (total, cv) => total + cv.callNo,
| 0,
| );
| }
|
| remove() {
| this.http
| .delete('/rule', { nos: this.selectedRows.map(i => i.no).join(',') })
| .subscribe(() => {
| this.getData();
| this.st.clearCheck();
| });
| }
|
| approval() {
| this.msg.success(`审批了 ${this.selectedRows.length} 笔`);
| }
|
| add(tpl: TemplateRef<{}>) {
| this.modalSrv.create({
| nzTitle: '新建规则',
| nzContent: tpl,
| nzOnOk: () => {
| this.loading = true;
| this.http
| .post('/rule', { description: this.description })
| .subscribe(() => {
| this.getData();
| });
| },
| });
| }
|
| reset(ls: any[]) {
| for (const item of ls) item.value = false;
| this.getData();
| }
| }
|
|