浏览代码

文字修改

seimin 10 月之前
父节点
当前提交
af8e294a95

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

@@ -463,22 +463,22 @@ const routes: Routes = [
463
         path: "performanceAllocation",
463
         path: "performanceAllocation",
464
         loadChildren: () => import("../performance-allocation/performance-allocation.module").then((m) => m.PerformanceAllocationModule),
464
         loadChildren: () => import("../performance-allocation/performance-allocation.module").then((m) => m.PerformanceAllocationModule),
465
       },
465
       },
466
-      // 绩效基础配置-人员统计
466
+      // 被服统计-人员统计
467
       {
467
       {
468
         path: "quiltWashingPersonnelStatistics",
468
         path: "quiltWashingPersonnelStatistics",
469
         loadChildren: () => import("../quilt-washing-personnel-statistics/quilt-washing-personnel-statistics.module").then((m) => m.QuiltWashingPersonnelStatisticsModule),
469
         loadChildren: () => import("../quilt-washing-personnel-statistics/quilt-washing-personnel-statistics.module").then((m) => m.QuiltWashingPersonnelStatisticsModule),
470
       },
470
       },
471
-      // 绩效基础配置-科室统计
471
+      // 被服统计-科室统计
472
       {
472
       {
473
         path: "quiltWashingDepartmentStatistics",
473
         path: "quiltWashingDepartmentStatistics",
474
         loadChildren: () => import("../quilt-washing-department-statistics/quilt-washing-department-statistics.module").then((m) => m.QuiltWashingDepartmentStatisticsModule),
474
         loadChildren: () => import("../quilt-washing-department-statistics/quilt-washing-department-statistics.module").then((m) => m.QuiltWashingDepartmentStatisticsModule),
475
       },
475
       },
476
-      // 绩效基础配置-全员统计
476
+      // 被服统计-全院统计
477
       {
477
       {
478
         path: "quiltWashingHospitalStatistics",
478
         path: "quiltWashingHospitalStatistics",
479
         loadChildren: () => import("../quilt-washing-hospital-statistics/quilt-washing-hospital-statistics.module").then((m) => m.QuiltWashingHospitalStatisticsModule),
479
         loadChildren: () => import("../quilt-washing-hospital-statistics/quilt-washing-hospital-statistics.module").then((m) => m.QuiltWashingHospitalStatisticsModule),
480
       },
480
       },
481
-      // 绩效基础配置-趋势分析
481
+      // 被服统计-趋势分析
482
       {
482
       {
483
         path: "quiltWashingTrendAnalysis",
483
         path: "quiltWashingTrendAnalysis",
484
         loadChildren: () => import("../quilt-washing-trend-analysis/quilt-washing-trend-analysis.module").then((m) => m.QuiltWashingTrendAnalysisModule),
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
         var a = document.createElement("a");
142
         var a = document.createElement("a");
143
         a.href = fileURL;
143
         a.href = fileURL;
144
         a.target = "_blank";
144
         a.target = "_blank";
145
-        a.download = "全统计.xls";
145
+        a.download = "全统计.xls";
146
         document.body.appendChild(a);
146
         document.body.appendChild(a);
147
         a.click();
147
         a.click();
148
       },
148
       },