|
@@ -0,0 +1,422 @@
|
|
1
|
+import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
|
|
2
|
+import { MainService } from '../../services/main.service';
|
|
3
|
+import { ToolService } from 'src/app/services/tool.service';
|
|
4
|
+import { format, startOfDay, endOfDay } from 'date-fns';
|
|
5
|
+@Component({
|
|
6
|
+ selector: 'app-businessData-detail-info-modal',
|
|
7
|
+ templateUrl: './businessData-detail-info-modal.component.html',
|
|
8
|
+ styleUrls: ['./businessData-detail-info-modal.component.less']
|
|
9
|
+})
|
|
10
|
+export class BusinessDataDetailInfoModalComponent implements OnInit {
|
|
11
|
+ // 切换科室,切换弹窗
|
|
12
|
+ hosId;
|
|
13
|
+ hsLoading = false;
|
|
14
|
+ bloodList: any = [];// 血制品列表
|
|
15
|
+ washingExceptionList: any = [];// 被服洗涤异常列表
|
|
16
|
+ specimenList: any = [];// 标本列表
|
|
17
|
+ inspectionRateStatisticsList: any = [];// 科室检查率统计列表
|
|
18
|
+ pageIndex: number = 1;//表格当前页码
|
|
19
|
+ pageSize: number = 10;//表格每页展示条数
|
|
20
|
+ total: number = 0;//表格总数据量
|
|
21
|
+ searchCriteria:any = {
|
|
22
|
+ stype: 0,
|
|
23
|
+ specimenDesc: 0,
|
|
24
|
+ }
|
|
25
|
+ @Input() show: Boolean;
|
|
26
|
+ @Input() orderId: String;
|
|
27
|
+ @Input() type: String = '';
|
|
28
|
+ @Input() dataInfo: any;
|
|
29
|
+
|
|
30
|
+ @Output() closeModelHs = new EventEmitter<any>();//1.组件暴露一个 EventEmitter 属性,当事件发生时,子组件利用该属性 emits(向上弹射)事件
|
|
31
|
+
|
|
32
|
+ constructor(private mainService: MainService, private tool: ToolService) { }
|
|
33
|
+
|
|
34
|
+ ngOnInit() {
|
|
35
|
+ this.hosId = this.tool.getCurrentHospital().id;
|
|
36
|
+ this.tabType = 1;
|
|
37
|
+ switch(this.type){
|
|
38
|
+ case 'blood':
|
|
39
|
+ this.getBlood(1);
|
|
40
|
+ break;
|
|
41
|
+ case 'specimen':
|
|
42
|
+ this.getSpecimen(1);
|
|
43
|
+ this.getSpecimenType();
|
|
44
|
+ this.getSpecimenDesc();
|
|
45
|
+ break;
|
|
46
|
+ case 'deptInspectionRateStatistics':
|
|
47
|
+ this.getDeptInspectionRateStatistics(1);
|
|
48
|
+ break;
|
|
49
|
+ case 'deptInspectionStatistics':
|
|
50
|
+ this.getDeptInspectionStatistics(1);
|
|
51
|
+ break;
|
|
52
|
+ case 'washingException':
|
|
53
|
+ this.getWashingException(1);
|
|
54
|
+ break;
|
|
55
|
+ case 'drugsJpbag':
|
|
56
|
+ this.getNewDrugConfig(1);
|
|
57
|
+ break;
|
|
58
|
+ case 'drugsWestern':
|
|
59
|
+ this.getNewDrugConfig(1);
|
|
60
|
+ break;
|
|
61
|
+ case 'drugsReturn':
|
|
62
|
+ this.getNewDrugConfig(1);
|
|
63
|
+ break;
|
|
64
|
+ case 'drugsPoison':
|
|
65
|
+ this.getNewDrugConfig(1);
|
|
66
|
+ break;
|
|
67
|
+ case 'drugsHerbal':
|
|
68
|
+ this.getNewDrugConfig(1);
|
|
69
|
+ break;
|
|
70
|
+
|
|
71
|
+ }
|
|
72
|
+ }
|
|
73
|
+ // 关闭弹窗
|
|
74
|
+ hideModal() {
|
|
75
|
+ this.closeModelHs.emit(JSON.stringify({ show: false }));//emits(向上弹射)事件
|
|
76
|
+ }
|
|
77
|
+
|
|
78
|
+ // 切换tab栏
|
|
79
|
+ tabType: number = 1; //tab栏
|
|
80
|
+ checkTab(type) {
|
|
81
|
+ this.tabType = type;
|
|
82
|
+ }
|
|
83
|
+
|
|
84
|
+ // 切换标本类型下拉框
|
|
85
|
+ selectStype(e){
|
|
86
|
+ console.log(e);
|
|
87
|
+ this.searchCriteria.specimenDesc = 0;
|
|
88
|
+ this.getSpecimenDesc();
|
|
89
|
+ this.getSpecimen(1);
|
|
90
|
+ }
|
|
91
|
+
|
|
92
|
+ // 切换标本类型下拉框
|
|
93
|
+ selectDesc(e){
|
|
94
|
+ console.log(e);
|
|
95
|
+ this.getSpecimen(1);
|
|
96
|
+ }
|
|
97
|
+
|
|
98
|
+ // 分页获取数据
|
|
99
|
+ getList(){
|
|
100
|
+ switch(this.type){
|
|
101
|
+ case 'blood':
|
|
102
|
+ this.getBlood();
|
|
103
|
+ break;
|
|
104
|
+ case 'specimen':
|
|
105
|
+ this.getSpecimen();
|
|
106
|
+ break;
|
|
107
|
+ case 'deptInspectionRateStatistics':
|
|
108
|
+ this.getDeptInspectionRateStatistics();
|
|
109
|
+ break;
|
|
110
|
+ case 'deptInspectionStatistics':
|
|
111
|
+ this.getDeptInspectionStatistics();
|
|
112
|
+ break;
|
|
113
|
+ case 'washingException':
|
|
114
|
+ this.getWashingException();
|
|
115
|
+ break;
|
|
116
|
+ case 'drugsJpbag':
|
|
117
|
+ this.getDrugsBugList(1);
|
|
118
|
+ break;
|
|
119
|
+ case 'drugsWestern':
|
|
120
|
+ this.getDrugsBugList(1);
|
|
121
|
+ break;
|
|
122
|
+ case 'drugsReturn':
|
|
123
|
+ this.getDrugsBugList(1);
|
|
124
|
+ break;
|
|
125
|
+ case 'drugsPoison':
|
|
126
|
+ this.getDrugsBugList(1);
|
|
127
|
+ break;
|
|
128
|
+ case 'drugsHerbal':
|
|
129
|
+ this.getDrugsBugList(1);
|
|
130
|
+ break;
|
|
131
|
+ }
|
|
132
|
+ }
|
|
133
|
+
|
|
134
|
+ // 获取列表数据
|
|
135
|
+ getBlood(idx?) {
|
|
136
|
+ if (idx) {
|
|
137
|
+ this.pageIndex = 1;
|
|
138
|
+ }
|
|
139
|
+ let postData = {
|
|
140
|
+ "type": "blood",
|
|
141
|
+ "orderId": this.orderId
|
|
142
|
+ }
|
|
143
|
+ this.hsLoading = true;
|
|
144
|
+ this.mainService.checkData(postData).subscribe((data:any) => {
|
|
145
|
+ this.hsLoading = false;
|
|
146
|
+ this.bloodList = data.data ? data.data.all : [];
|
|
147
|
+ this.pageSize = this.total = data.data ? data.data.all.length : 0;
|
|
148
|
+ })
|
|
149
|
+ }
|
|
150
|
+
|
|
151
|
+ // 获取标本类型
|
|
152
|
+ specimentTypeList: any[] = [{ id: 0, name: '全部' }];
|
|
153
|
+ getSpecimenType() {
|
|
154
|
+ this.mainService.getDictionary("list", "specimen_type").subscribe((data:any) => {
|
|
155
|
+ let specimentTypeList = [{ id: 0, name: '全部' }];
|
|
156
|
+ this.specimentTypeList = specimentTypeList.concat(data);
|
|
157
|
+ })
|
|
158
|
+ }
|
|
159
|
+
|
|
160
|
+ // 获取检验项目
|
|
161
|
+ specimenDescList: any[] = [{ id: 0, name: '', nameNum: '全部' }];
|
|
162
|
+ id:number = 0;
|
|
163
|
+ getSpecimenDesc() {
|
|
164
|
+ let postData = {
|
|
165
|
+ "hosId": this.hosId,
|
|
166
|
+ "gdId": this.orderId,
|
|
167
|
+ "stype": this.searchCriteria.stype || undefined,
|
|
168
|
+ };
|
|
169
|
+ this.mainService.specimenCount(postData).subscribe((data:any) => {
|
|
170
|
+ data.data = data.data || [];
|
|
171
|
+ let specimenDescList:any = [{ id: 0, name: '全部', nameNum: '全部' }];
|
|
172
|
+ specimenDescList[0].nameNum = `全部(${data.total})`;
|
|
173
|
+ this.specimenDescList = specimenDescList.concat( data.data.map(v => ({id: --this.id, name: v[0] || '', nameNum: (v[0] ? v[0].slice(0, 15) + (v[0].length >= 15 ? '...' : '') : '') + `(${v[1]})`})));
|
|
174
|
+ })
|
|
175
|
+ }
|
|
176
|
+
|
|
177
|
+ // 获取标本列表
|
|
178
|
+ getSpecimen(idx?) {
|
|
179
|
+ if (idx) {
|
|
180
|
+ this.pageIndex = 1;
|
|
181
|
+ }
|
|
182
|
+ let postData = {
|
|
183
|
+ idx: this.pageIndex - 1,
|
|
184
|
+ sum: this.pageSize,
|
|
185
|
+ specimen: {
|
|
186
|
+ orderBy: 'arrive_time desc',
|
|
187
|
+ hosId: this.hosId,
|
|
188
|
+ gdid: this.orderId,
|
|
189
|
+ stype: this.searchCriteria.stype ? { id: this.searchCriteria.stype } : undefined,
|
|
190
|
+ specimenDesc: this.searchCriteria.specimenDesc ? this.specimenDescList.find(v => v.id == this.searchCriteria.specimenDesc).name: undefined,
|
|
191
|
+ }
|
|
192
|
+ }
|
|
193
|
+ this.hsLoading = true;
|
|
194
|
+ this.mainService.getFetchDataList('simple/data','specimen',postData).subscribe(data => {
|
|
195
|
+ this.hsLoading = false;
|
|
196
|
+ this.specimenList = data.list || [];
|
|
197
|
+ this.total = data.totalNum || 0;
|
|
198
|
+ })
|
|
199
|
+ }
|
|
200
|
+
|
|
201
|
+ // 获取被服洗涤异常列表
|
|
202
|
+ getWashingException(idx?) {
|
|
203
|
+ if (idx) {
|
|
204
|
+ this.pageIndex = 1;
|
|
205
|
+ }
|
|
206
|
+ let postData = {
|
|
207
|
+ idx: this.pageIndex - 1,
|
|
208
|
+ sum: this.pageSize,
|
|
209
|
+ clothesException: {
|
|
210
|
+ hosId: this.hosId,
|
|
211
|
+ batchId: this.orderId,
|
|
212
|
+ }
|
|
213
|
+ }
|
|
214
|
+ this.hsLoading = true;
|
|
215
|
+ this.mainService.getFetchDataList('simple/data','clothesException',postData).subscribe(data => {
|
|
216
|
+ this.hsLoading = false;
|
|
217
|
+ this.washingExceptionList = data.list || [];
|
|
218
|
+ this.total = data.totalNum || 0;
|
|
219
|
+ })
|
|
220
|
+ }
|
|
221
|
+
|
|
222
|
+ // 获取新药品一单一码列表
|
|
223
|
+ drugsBugSingleList: any = [];// 药品列表
|
|
224
|
+ getDrugsBugSingle(idx?) {
|
|
225
|
+ if (idx) {
|
|
226
|
+ this.pageIndex = 1;
|
|
227
|
+ }
|
|
228
|
+ let postData = {
|
|
229
|
+ idx: this.pageIndex - 1,
|
|
230
|
+ sum: this.pageSize,
|
|
231
|
+ clothesException: {
|
|
232
|
+ hosId: this.hosId,
|
|
233
|
+ batchId: this.orderId,
|
|
234
|
+ }
|
|
235
|
+ }
|
|
236
|
+ this.hsLoading = true;
|
|
237
|
+ this.mainService.getFetchDataList('simple/data','clothesException',postData).subscribe(data => {
|
|
238
|
+ this.hsLoading = false;
|
|
239
|
+ this.drugsBugSingleList = data.list || [];
|
|
240
|
+ this.total = data.totalNum || 0;
|
|
241
|
+ })
|
|
242
|
+ }
|
|
243
|
+
|
|
244
|
+ // 获取新药品一单多码列表
|
|
245
|
+ drugsBugMultipleList: any = [];// 药包列表
|
|
246
|
+ getDrugsBugMultiple(idx?) {
|
|
247
|
+ if (idx) {
|
|
248
|
+ this.pageIndex = 1;
|
|
249
|
+ }
|
|
250
|
+ let postData = {
|
|
251
|
+ idx: this.pageIndex - 1,
|
|
252
|
+ sum: this.pageSize,
|
|
253
|
+ clothesException: {
|
|
254
|
+ hosId: this.hosId,
|
|
255
|
+ batchId: this.orderId,
|
|
256
|
+ }
|
|
257
|
+ }
|
|
258
|
+ this.hsLoading = true;
|
|
259
|
+ this.mainService.getFetchDataList('simple/data','clothesException',postData).subscribe(data => {
|
|
260
|
+ this.hsLoading = false;
|
|
261
|
+ this.drugsBugMultipleList = data.list || [];
|
|
262
|
+ this.total = data.totalNum || 0;
|
|
263
|
+ })
|
|
264
|
+ }
|
|
265
|
+
|
|
266
|
+ // 获取新药品列表
|
|
267
|
+ getDrugsBugList(idx?){
|
|
268
|
+ if(this.configs.drugsModel === 1){
|
|
269
|
+ // 一单一码
|
|
270
|
+ this.getDrugsBugSingle(idx);
|
|
271
|
+ }else if(this.configs.drugsModel === 2){
|
|
272
|
+ // 一单多码
|
|
273
|
+ this.getDrugsBugMultiple(idx);
|
|
274
|
+ }
|
|
275
|
+ }
|
|
276
|
+
|
|
277
|
+ // 获取新药品配置
|
|
278
|
+ configs:any = {};
|
|
279
|
+ getNewDrugConfig(idx?) {
|
|
280
|
+ this.hsLoading = true;
|
|
281
|
+ let postData = {
|
|
282
|
+ idx: 0,
|
|
283
|
+ sum: 1,
|
|
284
|
+ taskTypeConfig: {
|
|
285
|
+ taskTypeDTO: {
|
|
286
|
+ hosId: {
|
|
287
|
+ id: this.hosId
|
|
288
|
+ },
|
|
289
|
+ ordinaryField: {
|
|
290
|
+ key: 'ordinary_field',
|
|
291
|
+ value: this.type,
|
|
292
|
+ }
|
|
293
|
+ }
|
|
294
|
+ }
|
|
295
|
+ };
|
|
296
|
+ this.mainService
|
|
297
|
+ .getFetchDataList("simple/data", "taskTypeConfig", postData)
|
|
298
|
+ .subscribe((result) => {
|
|
299
|
+ if (result.status == 200) {
|
|
300
|
+ let list = result.list || [];
|
|
301
|
+ this.configs = list[0] || {};
|
|
302
|
+ this.getDrugsBugList(idx);
|
|
303
|
+ }else{
|
|
304
|
+ this.hsLoading = false;
|
|
305
|
+ }
|
|
306
|
+ });
|
|
307
|
+ }
|
|
308
|
+
|
|
309
|
+ // 获取科室检查率统计-详情列表
|
|
310
|
+ getDeptInspectionRateStatistics(idx?) {
|
|
311
|
+ if (idx) {
|
|
312
|
+ this.pageIndex = 1;
|
|
313
|
+ }
|
|
314
|
+ let postData:any = {
|
|
315
|
+ idx: this.pageIndex - 1,
|
|
316
|
+ sum: this.pageSize,
|
|
317
|
+ canceled: this.dataInfo.canceled ? true : undefined,
|
|
318
|
+ priority: this.dataInfo.priority ? 0 : undefined,
|
|
319
|
+ }
|
|
320
|
+ switch(this.dataInfo.type){
|
|
321
|
+ case 'total':
|
|
322
|
+ postData.deptId = this.dataInfo.data.id;
|
|
323
|
+ postData.hosId = this.hosId;
|
|
324
|
+ postData.startTime = this.dataInfo.searchDto.dateRange[0] ? format(startOfDay(this.dataInfo.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
325
|
+ postData.endTime = this.dataInfo.searchDto.dateRange[1] ? format(endOfDay(this.dataInfo.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
326
|
+ break;
|
|
327
|
+ case 'noCheckCount':
|
|
328
|
+ postData.deptId = this.dataInfo.data.id;
|
|
329
|
+ postData.hosId = this.hosId;
|
|
330
|
+ postData.startTime = this.dataInfo.searchDto.dateRange[0] ? format(startOfDay(this.dataInfo.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
331
|
+ postData.endTime = this.dataInfo.searchDto.dateRange[1] ? format(endOfDay(this.dataInfo.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
332
|
+ postData.reportInsState = 'noCheck';
|
|
333
|
+ break;
|
|
334
|
+ case 'checkCount':
|
|
335
|
+ postData.deptId = this.dataInfo.data.id;
|
|
336
|
+ postData.hosId = this.hosId;
|
|
337
|
+ postData.startTime = this.dataInfo.searchDto.dateRange[0] ? format(startOfDay(this.dataInfo.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
338
|
+ postData.endTime = this.dataInfo.searchDto.dateRange[1] ? format(endOfDay(this.dataInfo.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
339
|
+ postData.reportInsState = 'check';
|
|
340
|
+ break;
|
|
341
|
+ case 'insCount':
|
|
342
|
+ postData.deptId = this.dataInfo.data.id;
|
|
343
|
+ postData.hosId = this.hosId;
|
|
344
|
+ postData.startTime = this.dataInfo.searchDto.dateRange[0] ? format(startOfDay(this.dataInfo.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
345
|
+ postData.endTime = this.dataInfo.searchDto.dateRange[1] ? format(endOfDay(this.dataInfo.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
346
|
+ postData.reportInsState = 'inspect';
|
|
347
|
+ break;
|
|
348
|
+ }
|
|
349
|
+ this.hsLoading = true;
|
|
350
|
+ this.mainService.listMsgByMain("listInspect", postData).subscribe((data: any) => {
|
|
351
|
+ this.hsLoading = false;
|
|
352
|
+ this.inspectionRateStatisticsList = data.list || [];
|
|
353
|
+ this.total = data.totalNum || 0;
|
|
354
|
+ })
|
|
355
|
+
|
|
356
|
+ }
|
|
357
|
+
|
|
358
|
+ // 获取科室检查统计-详情列表
|
|
359
|
+ getDeptInspectionStatistics(idx?) {
|
|
360
|
+ if (idx) {
|
|
361
|
+ this.pageIndex = 1;
|
|
362
|
+ }
|
|
363
|
+ let postData:any = {
|
|
364
|
+ idx: this.pageIndex - 1,
|
|
365
|
+ sum: this.pageSize,
|
|
366
|
+ znDeptInspect: true,
|
|
367
|
+ }
|
|
368
|
+ switch(this.dataInfo.type){
|
|
369
|
+ case 'total':
|
|
370
|
+ postData.deptId = this.dataInfo.data[10];
|
|
371
|
+ postData.hosId = this.hosId;
|
|
372
|
+ postData.startTime = this.dataInfo.searchDto.dateRange[0] ? format(startOfDay(this.dataInfo.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
373
|
+ postData.endTime = this.dataInfo.searchDto.dateRange[1] ? format(endOfDay(this.dataInfo.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
374
|
+ break;
|
|
375
|
+ case 'cancel':
|
|
376
|
+ postData.deptId = this.dataInfo.data[10];
|
|
377
|
+ postData.hosId = this.hosId;
|
|
378
|
+ postData.startTime = this.dataInfo.searchDto.dateRange[0] ? format(startOfDay(this.dataInfo.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
379
|
+ postData.endTime = this.dataInfo.searchDto.dateRange[1] ? format(endOfDay(this.dataInfo.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
380
|
+ postData.cancel = true;
|
|
381
|
+ break;
|
|
382
|
+ case 'priority':
|
|
383
|
+ postData.deptId = this.dataInfo.data[10];
|
|
384
|
+ postData.hosId = this.hosId;
|
|
385
|
+ postData.startTime = this.dataInfo.searchDto.dateRange[0] ? format(startOfDay(this.dataInfo.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
386
|
+ postData.endTime = this.dataInfo.searchDto.dateRange[1] ? format(endOfDay(this.dataInfo.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
387
|
+ postData.priority = 1;
|
|
388
|
+ break;
|
|
389
|
+ case 'noneYY':
|
|
390
|
+ postData.deptId = this.dataInfo.data[10];
|
|
391
|
+ postData.hosId = this.hosId;
|
|
392
|
+ postData.startTime = this.dataInfo.searchDto.dateRange[0] ? format(startOfDay(this.dataInfo.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
393
|
+ postData.endTime = this.dataInfo.searchDto.dateRange[1] ? format(endOfDay(this.dataInfo.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
394
|
+ postData.noneYY = true;
|
|
395
|
+ break;
|
|
396
|
+ case 'waitCheck':
|
|
397
|
+ postData.deptId = this.dataInfo.data[10];
|
|
398
|
+ postData.hosId = this.hosId;
|
|
399
|
+ postData.startTime = this.dataInfo.searchDto.dateRange[0] ? format(startOfDay(this.dataInfo.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
400
|
+ postData.endTime = this.dataInfo.searchDto.dateRange[1] ? format(endOfDay(this.dataInfo.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
401
|
+ postData.waitCheck = true;
|
|
402
|
+ break;
|
|
403
|
+ case 'doCheck':
|
|
404
|
+ postData.deptId = this.dataInfo.data[10];
|
|
405
|
+ postData.hosId = this.hosId;
|
|
406
|
+ postData.startTime = this.dataInfo.searchDto.dateRange[0] ? format(startOfDay(this.dataInfo.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
407
|
+ postData.endTime = this.dataInfo.searchDto.dateRange[1] ? format(endOfDay(this.dataInfo.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined;
|
|
408
|
+ postData.doCheck = true;
|
|
409
|
+ break;
|
|
410
|
+ }
|
|
411
|
+ this.hsLoading = true;
|
|
412
|
+ this.mainService.listMsgByMain("listInspect", postData).subscribe((data: any) => {
|
|
413
|
+ this.hsLoading = false;
|
|
414
|
+ this.inspectionRateStatisticsList = data.list || [];
|
|
415
|
+ this.total = data.totalNum || 0;
|
|
416
|
+ })
|
|
417
|
+
|
|
418
|
+ }
|
|
419
|
+}
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|