Ver código fonte

文字修改

seimin 10 meses atrás
pai
commit
af8e294a95

+ 4 - 4
src/app/views/main/main-routing.module.ts

@@ -463,22 +463,22 @@ const routes: Routes = [
463 463
         path: "performanceAllocation",
464 464
         loadChildren: () => import("../performance-allocation/performance-allocation.module").then((m) => m.PerformanceAllocationModule),
465 465
       },
466
-      // 绩效基础配置-人员统计
466
+      // 被服统计-人员统计
467 467
       {
468 468
         path: "quiltWashingPersonnelStatistics",
469 469
         loadChildren: () => import("../quilt-washing-personnel-statistics/quilt-washing-personnel-statistics.module").then((m) => m.QuiltWashingPersonnelStatisticsModule),
470 470
       },
471
-      // 绩效基础配置-科室统计
471
+      // 被服统计-科室统计
472 472
       {
473 473
         path: "quiltWashingDepartmentStatistics",
474 474
         loadChildren: () => import("../quilt-washing-department-statistics/quilt-washing-department-statistics.module").then((m) => m.QuiltWashingDepartmentStatisticsModule),
475 475
       },
476
-      // 绩效基础配置-全员统计
476
+      // 被服统计-全院统计
477 477
       {
478 478
         path: "quiltWashingHospitalStatistics",
479 479
         loadChildren: () => import("../quilt-washing-hospital-statistics/quilt-washing-hospital-statistics.module").then((m) => m.QuiltWashingHospitalStatisticsModule),
480 480
       },
481
-      // 绩效基础配置-趋势分析
481
+      // 被服统计-趋势分析
482 482
       {
483 483
         path: "quiltWashingTrendAnalysis",
484 484
         loadChildren: () => import("../quilt-washing-trend-analysis/quilt-washing-trend-analysis.module").then((m) => m.QuiltWashingTrendAnalysisModule),

+ 1 - 1
src/app/views/quilt-washing-hospital-statistics/quilt-washing-hospital-statistics.component.ts

@@ -142,7 +142,7 @@ export class QuiltWashingHospitalStatisticsComponent implements OnInit {
142 142
         var a = document.createElement("a");
143 143
         a.href = fileURL;
144 144
         a.target = "_blank";
145
-        a.download = "全统计.xls";
145
+        a.download = "全统计.xls";
146 146
         document.body.appendChild(a);
147 147
         a.click();
148 148
       },