From b20cd8662a30fa76882c9ebb1d922261fa955bc2 Mon Sep 17 00:00:00 2001 From: liujun Date: Wed, 28 Feb 2024 15:24:24 +0800 Subject: [PATCH 01/22] =?UTF-8?q?=E4=B8=89=E9=A1=B9=E5=88=B6=E5=BA=A6?= =?UTF-8?q?=E5=BA=93=E6=95=B4=E4=BD=93=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/UploadFile/index.vue | 73 +++ src/views/Label/components/editLabel.vue | 262 +++++++++ src/views/Label/components/editSonLabel.vue | 68 +++ src/views/Label/components/selectLable.vue | 212 +++++++ .../components/condition.vue | 204 +++++++ .../components/dashboard.vue | 40 ++ .../components/editTextLibrary.vue | 371 +++++++++++++ .../components/list.vue | 494 +++++++++++++++++ .../components/listEm.vue | 499 +++++++++++++++++ .../components/textLibraryInfo.vue | 119 ++++ .../components/updateFile.vue | 77 +++ .../components/updateLog.vue | 55 ++ .../emergencyPlanManagement/index.vue | 19 + .../components/condition.vue | 188 +++++++ .../components/dashboard.vue | 41 ++ .../components/editTextLibrary.vue | 390 +++++++++++++ .../components/list.vue | 475 ++++++++++++++++ .../components/listEm.vue | 451 +++++++++++++++ .../components/textLibraryInfo.vue | 146 +++++ .../components/updateFile.vue | 77 +++ .../components/updateLog.vue | 55 ++ .../safetyOperationRegulations/index.vue | 19 + .../components/condition.vue | 188 +++++++ .../components/dashboard.vue | 41 ++ .../components/editTextLibrary.vue | 390 +++++++++++++ .../components/list.vue | 474 ++++++++++++++++ .../components/listEm.vue | 451 +++++++++++++++ .../components/textLibraryInfo.vue | 146 +++++ .../components/updateFile.vue | 77 +++ .../components/updateLog.vue | 55 ++ .../index.vue | 19 + .../components/condition.vue | 188 +++++++ .../components/dashboard.vue | 41 ++ .../components/editTextLibrary.vue | 390 +++++++++++++ .../components/list.vue | 474 ++++++++++++++++ .../components/listEm.vue | 451 +++++++++++++++ .../components/textLibraryInfo.vue | 146 +++++ .../components/updateFile.vue | 77 +++ .../components/updateLog.vue | 55 ++ .../index.vue | 19 + src/views/util/multipleChoice.vue | 108 ++++ src/views/util/selectDepartment.vue | 140 +++++ src/views/util/selectPosition.vue | 113 ++++ src/views/util/selectRole.vue | 114 ++++ src/views/util/selectStaff.vue | 238 ++++++++ src/views/util/selectType.vue | 222 ++++++++ src/views/util/selectWorker.vue | 517 ++++++++++++++++++ src/views/util/textEditing.vue | 111 ++++ 48 files changed, 9580 insertions(+) create mode 100644 src/components/UploadFile/index.vue create mode 100644 src/views/Label/components/editLabel.vue create mode 100644 src/views/Label/components/editSonLabel.vue create mode 100644 src/views/Label/components/selectLable.vue create mode 100644 src/views/threeSystems/emergencyPlanManagement/components/condition.vue create mode 100644 src/views/threeSystems/emergencyPlanManagement/components/dashboard.vue create mode 100644 src/views/threeSystems/emergencyPlanManagement/components/editTextLibrary.vue create mode 100644 src/views/threeSystems/emergencyPlanManagement/components/list.vue create mode 100644 src/views/threeSystems/emergencyPlanManagement/components/listEm.vue create mode 100644 src/views/threeSystems/emergencyPlanManagement/components/textLibraryInfo.vue create mode 100644 src/views/threeSystems/emergencyPlanManagement/components/updateFile.vue create mode 100644 src/views/threeSystems/emergencyPlanManagement/components/updateLog.vue create mode 100644 src/views/threeSystems/emergencyPlanManagement/index.vue create mode 100644 src/views/threeSystems/safetyOperationRegulations/components/condition.vue create mode 100644 src/views/threeSystems/safetyOperationRegulations/components/dashboard.vue create mode 100644 src/views/threeSystems/safetyOperationRegulations/components/editTextLibrary.vue create mode 100644 src/views/threeSystems/safetyOperationRegulations/components/list.vue create mode 100644 src/views/threeSystems/safetyOperationRegulations/components/listEm.vue create mode 100644 src/views/threeSystems/safetyOperationRegulations/components/textLibraryInfo.vue create mode 100644 src/views/threeSystems/safetyOperationRegulations/components/updateFile.vue create mode 100644 src/views/threeSystems/safetyOperationRegulations/components/updateLog.vue create mode 100644 src/views/threeSystems/safetyOperationRegulations/index.vue create mode 100644 src/views/threeSystems/safetyProductionManagementSystem/components/condition.vue create mode 100644 src/views/threeSystems/safetyProductionManagementSystem/components/dashboard.vue create mode 100644 src/views/threeSystems/safetyProductionManagementSystem/components/editTextLibrary.vue create mode 100644 src/views/threeSystems/safetyProductionManagementSystem/components/list.vue create mode 100644 src/views/threeSystems/safetyProductionManagementSystem/components/listEm.vue create mode 100644 src/views/threeSystems/safetyProductionManagementSystem/components/textLibraryInfo.vue create mode 100644 src/views/threeSystems/safetyProductionManagementSystem/components/updateFile.vue create mode 100644 src/views/threeSystems/safetyProductionManagementSystem/components/updateLog.vue create mode 100644 src/views/threeSystems/safetyProductionManagementSystem/index.vue create mode 100644 src/views/threeSystems/safetyProductionResponsibilitySystem/components/condition.vue create mode 100644 src/views/threeSystems/safetyProductionResponsibilitySystem/components/dashboard.vue create mode 100644 src/views/threeSystems/safetyProductionResponsibilitySystem/components/editTextLibrary.vue create mode 100644 src/views/threeSystems/safetyProductionResponsibilitySystem/components/list.vue create mode 100644 src/views/threeSystems/safetyProductionResponsibilitySystem/components/listEm.vue create mode 100644 src/views/threeSystems/safetyProductionResponsibilitySystem/components/textLibraryInfo.vue create mode 100644 src/views/threeSystems/safetyProductionResponsibilitySystem/components/updateFile.vue create mode 100644 src/views/threeSystems/safetyProductionResponsibilitySystem/components/updateLog.vue create mode 100644 src/views/threeSystems/safetyProductionResponsibilitySystem/index.vue create mode 100644 src/views/util/multipleChoice.vue create mode 100644 src/views/util/selectDepartment.vue create mode 100644 src/views/util/selectPosition.vue create mode 100644 src/views/util/selectRole.vue create mode 100644 src/views/util/selectStaff.vue create mode 100644 src/views/util/selectType.vue create mode 100644 src/views/util/selectWorker.vue create mode 100644 src/views/util/textEditing.vue diff --git a/src/components/UploadFile/index.vue b/src/components/UploadFile/index.vue new file mode 100644 index 0000000..b2e03dd --- /dev/null +++ b/src/components/UploadFile/index.vue @@ -0,0 +1,73 @@ + + + diff --git a/src/views/Label/components/editLabel.vue b/src/views/Label/components/editLabel.vue new file mode 100644 index 0000000..e877f75 --- /dev/null +++ b/src/views/Label/components/editLabel.vue @@ -0,0 +1,262 @@ + + + + + diff --git a/src/views/Label/components/editSonLabel.vue b/src/views/Label/components/editSonLabel.vue new file mode 100644 index 0000000..4ba59ea --- /dev/null +++ b/src/views/Label/components/editSonLabel.vue @@ -0,0 +1,68 @@ + + + + + diff --git a/src/views/Label/components/selectLable.vue b/src/views/Label/components/selectLable.vue new file mode 100644 index 0000000..ac7aa94 --- /dev/null +++ b/src/views/Label/components/selectLable.vue @@ -0,0 +1,212 @@ + + + + + diff --git a/src/views/threeSystems/emergencyPlanManagement/components/condition.vue b/src/views/threeSystems/emergencyPlanManagement/components/condition.vue new file mode 100644 index 0000000..fb91a7b --- /dev/null +++ b/src/views/threeSystems/emergencyPlanManagement/components/condition.vue @@ -0,0 +1,204 @@ + + + + diff --git a/src/views/threeSystems/emergencyPlanManagement/components/dashboard.vue b/src/views/threeSystems/emergencyPlanManagement/components/dashboard.vue new file mode 100644 index 0000000..0711bc6 --- /dev/null +++ b/src/views/threeSystems/emergencyPlanManagement/components/dashboard.vue @@ -0,0 +1,40 @@ + + + diff --git a/src/views/threeSystems/emergencyPlanManagement/components/editTextLibrary.vue b/src/views/threeSystems/emergencyPlanManagement/components/editTextLibrary.vue new file mode 100644 index 0000000..14293f1 --- /dev/null +++ b/src/views/threeSystems/emergencyPlanManagement/components/editTextLibrary.vue @@ -0,0 +1,371 @@ + + diff --git a/src/views/threeSystems/emergencyPlanManagement/components/list.vue b/src/views/threeSystems/emergencyPlanManagement/components/list.vue new file mode 100644 index 0000000..1e8d8b2 --- /dev/null +++ b/src/views/threeSystems/emergencyPlanManagement/components/list.vue @@ -0,0 +1,494 @@ + + + diff --git a/src/views/threeSystems/emergencyPlanManagement/components/listEm.vue b/src/views/threeSystems/emergencyPlanManagement/components/listEm.vue new file mode 100644 index 0000000..444b87e --- /dev/null +++ b/src/views/threeSystems/emergencyPlanManagement/components/listEm.vue @@ -0,0 +1,499 @@ + + + diff --git a/src/views/threeSystems/emergencyPlanManagement/components/textLibraryInfo.vue b/src/views/threeSystems/emergencyPlanManagement/components/textLibraryInfo.vue new file mode 100644 index 0000000..4439124 --- /dev/null +++ b/src/views/threeSystems/emergencyPlanManagement/components/textLibraryInfo.vue @@ -0,0 +1,119 @@ + + diff --git a/src/views/threeSystems/emergencyPlanManagement/components/updateFile.vue b/src/views/threeSystems/emergencyPlanManagement/components/updateFile.vue new file mode 100644 index 0000000..edcaa19 --- /dev/null +++ b/src/views/threeSystems/emergencyPlanManagement/components/updateFile.vue @@ -0,0 +1,77 @@ + + diff --git a/src/views/threeSystems/emergencyPlanManagement/components/updateLog.vue b/src/views/threeSystems/emergencyPlanManagement/components/updateLog.vue new file mode 100644 index 0000000..ee30bd2 --- /dev/null +++ b/src/views/threeSystems/emergencyPlanManagement/components/updateLog.vue @@ -0,0 +1,55 @@ + + diff --git a/src/views/threeSystems/emergencyPlanManagement/index.vue b/src/views/threeSystems/emergencyPlanManagement/index.vue new file mode 100644 index 0000000..ea192ed --- /dev/null +++ b/src/views/threeSystems/emergencyPlanManagement/index.vue @@ -0,0 +1,19 @@ + + diff --git a/src/views/threeSystems/safetyOperationRegulations/components/condition.vue b/src/views/threeSystems/safetyOperationRegulations/components/condition.vue new file mode 100644 index 0000000..9189111 --- /dev/null +++ b/src/views/threeSystems/safetyOperationRegulations/components/condition.vue @@ -0,0 +1,188 @@ + + + + diff --git a/src/views/threeSystems/safetyOperationRegulations/components/dashboard.vue b/src/views/threeSystems/safetyOperationRegulations/components/dashboard.vue new file mode 100644 index 0000000..77869cb --- /dev/null +++ b/src/views/threeSystems/safetyOperationRegulations/components/dashboard.vue @@ -0,0 +1,41 @@ + + + diff --git a/src/views/threeSystems/safetyOperationRegulations/components/editTextLibrary.vue b/src/views/threeSystems/safetyOperationRegulations/components/editTextLibrary.vue new file mode 100644 index 0000000..7a23d02 --- /dev/null +++ b/src/views/threeSystems/safetyOperationRegulations/components/editTextLibrary.vue @@ -0,0 +1,390 @@ + + diff --git a/src/views/threeSystems/safetyOperationRegulations/components/list.vue b/src/views/threeSystems/safetyOperationRegulations/components/list.vue new file mode 100644 index 0000000..7238eac --- /dev/null +++ b/src/views/threeSystems/safetyOperationRegulations/components/list.vue @@ -0,0 +1,475 @@ + + + diff --git a/src/views/threeSystems/safetyOperationRegulations/components/listEm.vue b/src/views/threeSystems/safetyOperationRegulations/components/listEm.vue new file mode 100644 index 0000000..e119211 --- /dev/null +++ b/src/views/threeSystems/safetyOperationRegulations/components/listEm.vue @@ -0,0 +1,451 @@ + + + diff --git a/src/views/threeSystems/safetyOperationRegulations/components/textLibraryInfo.vue b/src/views/threeSystems/safetyOperationRegulations/components/textLibraryInfo.vue new file mode 100644 index 0000000..b104a8f --- /dev/null +++ b/src/views/threeSystems/safetyOperationRegulations/components/textLibraryInfo.vue @@ -0,0 +1,146 @@ + + diff --git a/src/views/threeSystems/safetyOperationRegulations/components/updateFile.vue b/src/views/threeSystems/safetyOperationRegulations/components/updateFile.vue new file mode 100644 index 0000000..edcaa19 --- /dev/null +++ b/src/views/threeSystems/safetyOperationRegulations/components/updateFile.vue @@ -0,0 +1,77 @@ + + diff --git a/src/views/threeSystems/safetyOperationRegulations/components/updateLog.vue b/src/views/threeSystems/safetyOperationRegulations/components/updateLog.vue new file mode 100644 index 0000000..ee30bd2 --- /dev/null +++ b/src/views/threeSystems/safetyOperationRegulations/components/updateLog.vue @@ -0,0 +1,55 @@ + + diff --git a/src/views/threeSystems/safetyOperationRegulations/index.vue b/src/views/threeSystems/safetyOperationRegulations/index.vue new file mode 100644 index 0000000..8d78561 --- /dev/null +++ b/src/views/threeSystems/safetyOperationRegulations/index.vue @@ -0,0 +1,19 @@ + + diff --git a/src/views/threeSystems/safetyProductionManagementSystem/components/condition.vue b/src/views/threeSystems/safetyProductionManagementSystem/components/condition.vue new file mode 100644 index 0000000..57a21ed --- /dev/null +++ b/src/views/threeSystems/safetyProductionManagementSystem/components/condition.vue @@ -0,0 +1,188 @@ + + + + diff --git a/src/views/threeSystems/safetyProductionManagementSystem/components/dashboard.vue b/src/views/threeSystems/safetyProductionManagementSystem/components/dashboard.vue new file mode 100644 index 0000000..3c52583 --- /dev/null +++ b/src/views/threeSystems/safetyProductionManagementSystem/components/dashboard.vue @@ -0,0 +1,41 @@ + + + diff --git a/src/views/threeSystems/safetyProductionManagementSystem/components/editTextLibrary.vue b/src/views/threeSystems/safetyProductionManagementSystem/components/editTextLibrary.vue new file mode 100644 index 0000000..9290e08 --- /dev/null +++ b/src/views/threeSystems/safetyProductionManagementSystem/components/editTextLibrary.vue @@ -0,0 +1,390 @@ + + diff --git a/src/views/threeSystems/safetyProductionManagementSystem/components/list.vue b/src/views/threeSystems/safetyProductionManagementSystem/components/list.vue new file mode 100644 index 0000000..7810b48 --- /dev/null +++ b/src/views/threeSystems/safetyProductionManagementSystem/components/list.vue @@ -0,0 +1,474 @@ + + + diff --git a/src/views/threeSystems/safetyProductionManagementSystem/components/listEm.vue b/src/views/threeSystems/safetyProductionManagementSystem/components/listEm.vue new file mode 100644 index 0000000..d551b05 --- /dev/null +++ b/src/views/threeSystems/safetyProductionManagementSystem/components/listEm.vue @@ -0,0 +1,451 @@ + + + diff --git a/src/views/threeSystems/safetyProductionManagementSystem/components/textLibraryInfo.vue b/src/views/threeSystems/safetyProductionManagementSystem/components/textLibraryInfo.vue new file mode 100644 index 0000000..e9f9aac --- /dev/null +++ b/src/views/threeSystems/safetyProductionManagementSystem/components/textLibraryInfo.vue @@ -0,0 +1,146 @@ + + diff --git a/src/views/threeSystems/safetyProductionManagementSystem/components/updateFile.vue b/src/views/threeSystems/safetyProductionManagementSystem/components/updateFile.vue new file mode 100644 index 0000000..edcaa19 --- /dev/null +++ b/src/views/threeSystems/safetyProductionManagementSystem/components/updateFile.vue @@ -0,0 +1,77 @@ + + diff --git a/src/views/threeSystems/safetyProductionManagementSystem/components/updateLog.vue b/src/views/threeSystems/safetyProductionManagementSystem/components/updateLog.vue new file mode 100644 index 0000000..ee30bd2 --- /dev/null +++ b/src/views/threeSystems/safetyProductionManagementSystem/components/updateLog.vue @@ -0,0 +1,55 @@ + + diff --git a/src/views/threeSystems/safetyProductionManagementSystem/index.vue b/src/views/threeSystems/safetyProductionManagementSystem/index.vue new file mode 100644 index 0000000..8d78561 --- /dev/null +++ b/src/views/threeSystems/safetyProductionManagementSystem/index.vue @@ -0,0 +1,19 @@ + + diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/condition.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/condition.vue new file mode 100644 index 0000000..ef4a237 --- /dev/null +++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/condition.vue @@ -0,0 +1,188 @@ + + + + diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/dashboard.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/dashboard.vue new file mode 100644 index 0000000..84423de --- /dev/null +++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/dashboard.vue @@ -0,0 +1,41 @@ + + + diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/editTextLibrary.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/editTextLibrary.vue new file mode 100644 index 0000000..0e4b0ad --- /dev/null +++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/editTextLibrary.vue @@ -0,0 +1,390 @@ + + diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/list.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/list.vue new file mode 100644 index 0000000..e90dc94 --- /dev/null +++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/list.vue @@ -0,0 +1,474 @@ + + + diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/listEm.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/listEm.vue new file mode 100644 index 0000000..3189061 --- /dev/null +++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/listEm.vue @@ -0,0 +1,451 @@ + + + diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/textLibraryInfo.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/textLibraryInfo.vue new file mode 100644 index 0000000..5ce9a08 --- /dev/null +++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/textLibraryInfo.vue @@ -0,0 +1,146 @@ + + diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/updateFile.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/updateFile.vue new file mode 100644 index 0000000..edcaa19 --- /dev/null +++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/updateFile.vue @@ -0,0 +1,77 @@ + + diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/updateLog.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/updateLog.vue new file mode 100644 index 0000000..ee30bd2 --- /dev/null +++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/updateLog.vue @@ -0,0 +1,55 @@ + + diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/index.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/index.vue new file mode 100644 index 0000000..8d78561 --- /dev/null +++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/index.vue @@ -0,0 +1,19 @@ + + diff --git a/src/views/util/multipleChoice.vue b/src/views/util/multipleChoice.vue new file mode 100644 index 0000000..ff4dde3 --- /dev/null +++ b/src/views/util/multipleChoice.vue @@ -0,0 +1,108 @@ + + + + + diff --git a/src/views/util/selectDepartment.vue b/src/views/util/selectDepartment.vue new file mode 100644 index 0000000..7c77e6a --- /dev/null +++ b/src/views/util/selectDepartment.vue @@ -0,0 +1,140 @@ + + + + + diff --git a/src/views/util/selectPosition.vue b/src/views/util/selectPosition.vue new file mode 100644 index 0000000..666f960 --- /dev/null +++ b/src/views/util/selectPosition.vue @@ -0,0 +1,113 @@ + + + + + diff --git a/src/views/util/selectRole.vue b/src/views/util/selectRole.vue new file mode 100644 index 0000000..c7ed30a --- /dev/null +++ b/src/views/util/selectRole.vue @@ -0,0 +1,114 @@ + + + + + diff --git a/src/views/util/selectStaff.vue b/src/views/util/selectStaff.vue new file mode 100644 index 0000000..235ec99 --- /dev/null +++ b/src/views/util/selectStaff.vue @@ -0,0 +1,238 @@ + + + diff --git a/src/views/util/selectType.vue b/src/views/util/selectType.vue new file mode 100644 index 0000000..52b64e2 --- /dev/null +++ b/src/views/util/selectType.vue @@ -0,0 +1,222 @@ + + + + diff --git a/src/views/util/selectWorker.vue b/src/views/util/selectWorker.vue new file mode 100644 index 0000000..7964031 --- /dev/null +++ b/src/views/util/selectWorker.vue @@ -0,0 +1,517 @@ + + + + + + + + + diff --git a/src/views/util/textEditing.vue b/src/views/util/textEditing.vue new file mode 100644 index 0000000..0603f4b --- /dev/null +++ b/src/views/util/textEditing.vue @@ -0,0 +1,111 @@ + + + + + + From b05a4272b8bd4d69a331aee6d7b8a1ad1e73ad70 Mon Sep 17 00:00:00 2001 From: liujun Date: Wed, 28 Feb 2024 16:52:11 +0800 Subject: [PATCH 02/22] =?UTF-8?q?=E4=B8=89=E9=A1=B9=E5=88=B6=E5=BA=A6?= =?UTF-8?q?=E5=BA=93bug=E4=BF=AE=E5=A4=8D=201=E3=80=81=E6=A0=87=E7=AD=BE?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E7=A9=BA=E5=86=85=E5=AE=B9=202=E3=80=81?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=8C=89=E9=92=AE=E5=8E=BB=E6=8E=89=E6=9D=83?= =?UTF-8?q?=E9=99=90=E6=A0=A1=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../safetyOperationRegulations/components/listEm.vue | 2 +- .../safetyProductionManagementSystem/components/listEm.vue | 2 +- .../safetyProductionResponsibilitySystem/components/listEm.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/threeSystems/safetyOperationRegulations/components/listEm.vue b/src/views/threeSystems/safetyOperationRegulations/components/listEm.vue index e119211..5c97e2e 100644 --- a/src/views/threeSystems/safetyOperationRegulations/components/listEm.vue +++ b/src/views/threeSystems/safetyOperationRegulations/components/listEm.vue @@ -109,7 +109,7 @@
- 新增 + 新增
diff --git a/src/views/threeSystems/safetyProductionManagementSystem/components/listEm.vue b/src/views/threeSystems/safetyProductionManagementSystem/components/listEm.vue index d551b05..17cd719 100644 --- a/src/views/threeSystems/safetyProductionManagementSystem/components/listEm.vue +++ b/src/views/threeSystems/safetyProductionManagementSystem/components/listEm.vue @@ -109,7 +109,7 @@
- 新增 + 新增
diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/listEm.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/listEm.vue index 3189061..22df6eb 100644 --- a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/listEm.vue +++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/listEm.vue @@ -109,7 +109,7 @@
- 新增 + 新增
From 6ad6736058622fa1dd459ccf62f08fd1eef8b9b1 Mon Sep 17 00:00:00 2001 From: liujun Date: Wed, 28 Feb 2024 17:00:06 +0800 Subject: [PATCH 03/22] =?UTF-8?q?=E6=B8=85=E9=99=A4=E6=97=A0=E7=94=A8?= =?UTF-8?q?=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../safetyOperationRegulations/components/list.vue | 2 +- .../safetyOperationRegulations/components/listEm.vue | 4 ++-- .../safetyProductionManagementSystem/components/list.vue | 2 +- .../components/listEm.vue | 8 ++++---- .../components/list.vue | 2 +- .../components/listEm.vue | 8 ++++---- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/views/threeSystems/safetyOperationRegulations/components/list.vue b/src/views/threeSystems/safetyOperationRegulations/components/list.vue index 7238eac..e3a71bb 100644 --- a/src/views/threeSystems/safetyOperationRegulations/components/list.vue +++ b/src/views/threeSystems/safetyOperationRegulations/components/list.vue @@ -97,7 +97,7 @@ diff --git a/src/views/threeSystems/safetyProductionManagementSystem/components/list.vue b/src/views/threeSystems/safetyProductionManagementSystem/components/list.vue index 7810b48..586477b 100644 --- a/src/views/threeSystems/safetyProductionManagementSystem/components/list.vue +++ b/src/views/threeSystems/safetyProductionManagementSystem/components/list.vue @@ -96,7 +96,7 @@ @@ -109,7 +109,7 @@
- 新增 + 新增
diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/listEm.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/listEm.vue index 3da56a2..e61047b 100644 --- a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/listEm.vue +++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/listEm.vue @@ -100,8 +100,8 @@ 导出 - 编辑 - 删除 + 编辑 + 删除 @@ -109,7 +109,7 @@
- 新增 + 新增
From 163bc26036d3acef6076c008099b613097983804 Mon Sep 17 00:00:00 2001 From: liujun Date: Tue, 12 Mar 2024 15:00:17 +0800 Subject: [PATCH 06/22] =?UTF-8?q?14473=20=E4=B8=89=E9=A1=B9=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=BA=93=E9=83=BD=E6=9C=89=20=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E4=BC=81=E4=B8=9A=E7=B1=BB=E5=9E=8B=E7=9A=84=E4=BC=81=E4=B8=9A?= =?UTF-8?q?=20=E5=88=9B=E5=BB=BA=E7=9A=84=E6=95=B0=E6=8D=AE=E4=B8=8D?= =?UTF-8?q?=E6=AD=A3=E7=A1=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../safetyOperationRegulations/components/condition.vue | 2 +- .../safetyProductionManagementSystem/components/condition.vue | 2 +- .../components/condition.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/threeSystems/safetyOperationRegulations/components/condition.vue b/src/views/threeSystems/safetyOperationRegulations/components/condition.vue index 9189111..c9af125 100644 --- a/src/views/threeSystems/safetyOperationRegulations/components/condition.vue +++ b/src/views/threeSystems/safetyOperationRegulations/components/condition.vue @@ -20,7 +20,7 @@ - + - + - + Date: Tue, 12 Mar 2024 15:08:59 +0800 Subject: [PATCH 07/22] =?UTF-8?q?14468=20=E4=B8=89=E9=A1=B9=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=BA=93=E9=83=BD=E6=9C=89=20=E6=96=B0=E5=A2=9E=20?= =?UTF-8?q?=E8=BF=98=E6=98=BE=E7=A4=BA=E4=B9=8B=E5=89=8D=E5=BC=B9=E7=AA=97?= =?UTF-8?q?=E7=9A=84=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../safetyOperationRegulations/components/editTextLibrary.vue | 4 +++- .../components/editTextLibrary.vue | 2 +- .../components/editTextLibrary.vue | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/views/threeSystems/safetyOperationRegulations/components/editTextLibrary.vue b/src/views/threeSystems/safetyOperationRegulations/components/editTextLibrary.vue index 7a23d02..22a3dec 100644 --- a/src/views/threeSystems/safetyOperationRegulations/components/editTextLibrary.vue +++ b/src/views/threeSystems/safetyOperationRegulations/components/editTextLibrary.vue @@ -1,5 +1,5 @@