From e98745f6e56681e8e6b2aab6019b66de02419247 Mon Sep 17 00:00:00 2001 From: liujun Date: Tue, 18 Jun 2024 19:32:44 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=90=E6=82=A3=E5=BA=93=E3=80=81=E6=A0=87?= =?UTF-8?q?=E5=87=86=E5=BA=93=E5=8A=9F=E8=83=BD=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lawsRegulations/components/condition.vue | 188 ++++++ .../lawsRegulations/components/dashboard.vue | 41 ++ .../components/editTextLibrary.vue | 415 ++++++++++++ .../lawsRegulations/components/list.vue | 587 +++++++++++++++++ .../lawsRegulations/components/listEm.vue | 539 ++++++++++++++++ .../components/textLibraryInfo.vue | 149 +++++ .../lawsRegulations/components/updateFile.vue | 77 +++ .../lawsRegulations/components/updateLog.vue | 55 ++ .../threeSystems/lawsRegulations/index.vue | 19 + .../standardLibrary/components/condition.vue | 188 ++++++ .../standardLibrary/components/dashboard.vue | 38 ++ .../components/editTextLibrary.vue | 392 ++++++++++++ .../standardLibrary/components/list.vue | 590 ++++++++++++++++++ .../standardLibrary/components/listEm.vue | 504 +++++++++++++++ .../components/textLibraryInfo.vue | 145 +++++ .../standardLibrary/components/updateLog.vue | 55 ++ .../components/updateSpeFile.vue | 77 +++ .../threeSystems/standardLibrary/index.vue | 19 + src/views/util/multipleChoice.vue | 1 + 19 files changed, 4079 insertions(+) create mode 100644 src/views/threeSystems/lawsRegulations/components/condition.vue create mode 100644 src/views/threeSystems/lawsRegulations/components/dashboard.vue create mode 100644 src/views/threeSystems/lawsRegulations/components/editTextLibrary.vue create mode 100644 src/views/threeSystems/lawsRegulations/components/list.vue create mode 100644 src/views/threeSystems/lawsRegulations/components/listEm.vue create mode 100644 src/views/threeSystems/lawsRegulations/components/textLibraryInfo.vue create mode 100644 src/views/threeSystems/lawsRegulations/components/updateFile.vue create mode 100644 src/views/threeSystems/lawsRegulations/components/updateLog.vue create mode 100644 src/views/threeSystems/lawsRegulations/index.vue create mode 100644 src/views/threeSystems/standardLibrary/components/condition.vue create mode 100644 src/views/threeSystems/standardLibrary/components/dashboard.vue create mode 100644 src/views/threeSystems/standardLibrary/components/editTextLibrary.vue create mode 100644 src/views/threeSystems/standardLibrary/components/list.vue create mode 100644 src/views/threeSystems/standardLibrary/components/listEm.vue create mode 100644 src/views/threeSystems/standardLibrary/components/textLibraryInfo.vue create mode 100644 src/views/threeSystems/standardLibrary/components/updateLog.vue create mode 100644 src/views/threeSystems/standardLibrary/components/updateSpeFile.vue create mode 100644 src/views/threeSystems/standardLibrary/index.vue diff --git a/src/views/threeSystems/lawsRegulations/components/condition.vue b/src/views/threeSystems/lawsRegulations/components/condition.vue new file mode 100644 index 0000000..9189111 --- /dev/null +++ b/src/views/threeSystems/lawsRegulations/components/condition.vue @@ -0,0 +1,188 @@ + + + + diff --git a/src/views/threeSystems/lawsRegulations/components/dashboard.vue b/src/views/threeSystems/lawsRegulations/components/dashboard.vue new file mode 100644 index 0000000..9970149 --- /dev/null +++ b/src/views/threeSystems/lawsRegulations/components/dashboard.vue @@ -0,0 +1,41 @@ + + + diff --git a/src/views/threeSystems/lawsRegulations/components/editTextLibrary.vue b/src/views/threeSystems/lawsRegulations/components/editTextLibrary.vue new file mode 100644 index 0000000..0d047ad --- /dev/null +++ b/src/views/threeSystems/lawsRegulations/components/editTextLibrary.vue @@ -0,0 +1,415 @@ + + diff --git a/src/views/threeSystems/lawsRegulations/components/list.vue b/src/views/threeSystems/lawsRegulations/components/list.vue new file mode 100644 index 0000000..bff4c88 --- /dev/null +++ b/src/views/threeSystems/lawsRegulations/components/list.vue @@ -0,0 +1,587 @@ + + + diff --git a/src/views/threeSystems/lawsRegulations/components/listEm.vue b/src/views/threeSystems/lawsRegulations/components/listEm.vue new file mode 100644 index 0000000..e20f017 --- /dev/null +++ b/src/views/threeSystems/lawsRegulations/components/listEm.vue @@ -0,0 +1,539 @@ + + + diff --git a/src/views/threeSystems/lawsRegulations/components/textLibraryInfo.vue b/src/views/threeSystems/lawsRegulations/components/textLibraryInfo.vue new file mode 100644 index 0000000..2b354f8 --- /dev/null +++ b/src/views/threeSystems/lawsRegulations/components/textLibraryInfo.vue @@ -0,0 +1,149 @@ + + diff --git a/src/views/threeSystems/lawsRegulations/components/updateFile.vue b/src/views/threeSystems/lawsRegulations/components/updateFile.vue new file mode 100644 index 0000000..63cfb6f --- /dev/null +++ b/src/views/threeSystems/lawsRegulations/components/updateFile.vue @@ -0,0 +1,77 @@ + + diff --git a/src/views/threeSystems/lawsRegulations/components/updateLog.vue b/src/views/threeSystems/lawsRegulations/components/updateLog.vue new file mode 100644 index 0000000..ee30bd2 --- /dev/null +++ b/src/views/threeSystems/lawsRegulations/components/updateLog.vue @@ -0,0 +1,55 @@ + + diff --git a/src/views/threeSystems/lawsRegulations/index.vue b/src/views/threeSystems/lawsRegulations/index.vue new file mode 100644 index 0000000..8d78561 --- /dev/null +++ b/src/views/threeSystems/lawsRegulations/index.vue @@ -0,0 +1,19 @@ + + diff --git a/src/views/threeSystems/standardLibrary/components/condition.vue b/src/views/threeSystems/standardLibrary/components/condition.vue new file mode 100644 index 0000000..c9af125 --- /dev/null +++ b/src/views/threeSystems/standardLibrary/components/condition.vue @@ -0,0 +1,188 @@ + + + + diff --git a/src/views/threeSystems/standardLibrary/components/dashboard.vue b/src/views/threeSystems/standardLibrary/components/dashboard.vue new file mode 100644 index 0000000..a4372fc --- /dev/null +++ b/src/views/threeSystems/standardLibrary/components/dashboard.vue @@ -0,0 +1,38 @@ + + + diff --git a/src/views/threeSystems/standardLibrary/components/editTextLibrary.vue b/src/views/threeSystems/standardLibrary/components/editTextLibrary.vue new file mode 100644 index 0000000..6faae97 --- /dev/null +++ b/src/views/threeSystems/standardLibrary/components/editTextLibrary.vue @@ -0,0 +1,392 @@ + + diff --git a/src/views/threeSystems/standardLibrary/components/list.vue b/src/views/threeSystems/standardLibrary/components/list.vue new file mode 100644 index 0000000..d815fe2 --- /dev/null +++ b/src/views/threeSystems/standardLibrary/components/list.vue @@ -0,0 +1,590 @@ + + + diff --git a/src/views/threeSystems/standardLibrary/components/listEm.vue b/src/views/threeSystems/standardLibrary/components/listEm.vue new file mode 100644 index 0000000..d9efaf8 --- /dev/null +++ b/src/views/threeSystems/standardLibrary/components/listEm.vue @@ -0,0 +1,504 @@ + + + diff --git a/src/views/threeSystems/standardLibrary/components/textLibraryInfo.vue b/src/views/threeSystems/standardLibrary/components/textLibraryInfo.vue new file mode 100644 index 0000000..6056acd --- /dev/null +++ b/src/views/threeSystems/standardLibrary/components/textLibraryInfo.vue @@ -0,0 +1,145 @@ + + diff --git a/src/views/threeSystems/standardLibrary/components/updateLog.vue b/src/views/threeSystems/standardLibrary/components/updateLog.vue new file mode 100644 index 0000000..ee30bd2 --- /dev/null +++ b/src/views/threeSystems/standardLibrary/components/updateLog.vue @@ -0,0 +1,55 @@ + + diff --git a/src/views/threeSystems/standardLibrary/components/updateSpeFile.vue b/src/views/threeSystems/standardLibrary/components/updateSpeFile.vue new file mode 100644 index 0000000..63cfb6f --- /dev/null +++ b/src/views/threeSystems/standardLibrary/components/updateSpeFile.vue @@ -0,0 +1,77 @@ + + diff --git a/src/views/threeSystems/standardLibrary/index.vue b/src/views/threeSystems/standardLibrary/index.vue new file mode 100644 index 0000000..8d78561 --- /dev/null +++ b/src/views/threeSystems/standardLibrary/index.vue @@ -0,0 +1,19 @@ + + diff --git a/src/views/util/multipleChoice.vue b/src/views/util/multipleChoice.vue index 71ae088..46c3554 100644 --- a/src/views/util/multipleChoice.vue +++ b/src/views/util/multipleChoice.vue @@ -103,6 +103,7 @@ export default { this.$emit('getChooseOne', { info: labelList[0] }) } this.$emit('update:dynamicTags', labelList) + this.$forceUpdate() }, creatTage() { this.$refs.editLabel.init({ TYPE: '0' })