From 6a26a21f09178189c5eed2fbf2e0d78a025ed570 Mon Sep 17 00:00:00 2001 From: liujun Date: Fri, 26 Apr 2024 18:08:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=89=E9=A1=B9=E5=88=B6=E5=BA=A6=E5=BA=93?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=B9=B3=E5=8F=B0=E8=B5=84=E6=BA=90=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../soLibrary/components/condition.vue | 188 +++++++ .../soLibrary/components/dashboard.vue | 38 ++ .../soLibrary/components/editTextLibrary.vue | 392 +++++++++++++ .../soLibrary/components/list.vue | 527 ++++++++++++++++++ .../soLibrary/components/listEm.vue | 504 +++++++++++++++++ .../soLibrary/components/textLibraryInfo.vue | 146 +++++ .../soLibrary/components/updateFile.vue | 77 +++ .../soLibrary/components/updateLog.vue | 55 ++ src/views/threeSystems/soLibrary/index.vue | 19 + .../spmLibrary/components/condition.vue | 188 +++++++ .../spmLibrary/components/dashboard.vue | 38 ++ .../spmLibrary/components/editTextLibrary.vue | 390 +++++++++++++ .../spmLibrary/components/list.vue | 526 +++++++++++++++++ .../spmLibrary/components/listEm.vue | 503 +++++++++++++++++ .../spmLibrary/components/textLibraryInfo.vue | 146 +++++ .../spmLibrary/components/updateFile.vue | 77 +++ .../spmLibrary/components/updateLog.vue | 55 ++ src/views/threeSystems/spmLibrary/index.vue | 19 + .../sprLibrary/components/condition.vue | 188 +++++++ .../sprLibrary/components/dashboard.vue | 38 ++ .../sprLibrary/components/editTextLibrary.vue | 390 +++++++++++++ .../sprLibrary/components/list.vue | 526 +++++++++++++++++ .../sprLibrary/components/listEm.vue | 503 +++++++++++++++++ .../sprLibrary/components/textLibraryInfo.vue | 146 +++++ .../sprLibrary/components/updateFile.vue | 77 +++ .../sprLibrary/components/updateLog.vue | 55 ++ src/views/threeSystems/sprLibrary/index.vue | 19 + 27 files changed, 5830 insertions(+) create mode 100644 src/views/threeSystems/soLibrary/components/condition.vue create mode 100644 src/views/threeSystems/soLibrary/components/dashboard.vue create mode 100644 src/views/threeSystems/soLibrary/components/editTextLibrary.vue create mode 100644 src/views/threeSystems/soLibrary/components/list.vue create mode 100644 src/views/threeSystems/soLibrary/components/listEm.vue create mode 100644 src/views/threeSystems/soLibrary/components/textLibraryInfo.vue create mode 100644 src/views/threeSystems/soLibrary/components/updateFile.vue create mode 100644 src/views/threeSystems/soLibrary/components/updateLog.vue create mode 100644 src/views/threeSystems/soLibrary/index.vue create mode 100644 src/views/threeSystems/spmLibrary/components/condition.vue create mode 100644 src/views/threeSystems/spmLibrary/components/dashboard.vue create mode 100644 src/views/threeSystems/spmLibrary/components/editTextLibrary.vue create mode 100644 src/views/threeSystems/spmLibrary/components/list.vue create mode 100644 src/views/threeSystems/spmLibrary/components/listEm.vue create mode 100644 src/views/threeSystems/spmLibrary/components/textLibraryInfo.vue create mode 100644 src/views/threeSystems/spmLibrary/components/updateFile.vue create mode 100644 src/views/threeSystems/spmLibrary/components/updateLog.vue create mode 100644 src/views/threeSystems/spmLibrary/index.vue create mode 100644 src/views/threeSystems/sprLibrary/components/condition.vue create mode 100644 src/views/threeSystems/sprLibrary/components/dashboard.vue create mode 100644 src/views/threeSystems/sprLibrary/components/editTextLibrary.vue create mode 100644 src/views/threeSystems/sprLibrary/components/list.vue create mode 100644 src/views/threeSystems/sprLibrary/components/listEm.vue create mode 100644 src/views/threeSystems/sprLibrary/components/textLibraryInfo.vue create mode 100644 src/views/threeSystems/sprLibrary/components/updateFile.vue create mode 100644 src/views/threeSystems/sprLibrary/components/updateLog.vue create mode 100644 src/views/threeSystems/sprLibrary/index.vue diff --git a/src/views/threeSystems/soLibrary/components/condition.vue b/src/views/threeSystems/soLibrary/components/condition.vue new file mode 100644 index 0000000..c9af125 --- /dev/null +++ b/src/views/threeSystems/soLibrary/components/condition.vue @@ -0,0 +1,188 @@ + + + + diff --git a/src/views/threeSystems/soLibrary/components/dashboard.vue b/src/views/threeSystems/soLibrary/components/dashboard.vue new file mode 100644 index 0000000..56486f2 --- /dev/null +++ b/src/views/threeSystems/soLibrary/components/dashboard.vue @@ -0,0 +1,38 @@ + + + diff --git a/src/views/threeSystems/soLibrary/components/editTextLibrary.vue b/src/views/threeSystems/soLibrary/components/editTextLibrary.vue new file mode 100644 index 0000000..22a3dec --- /dev/null +++ b/src/views/threeSystems/soLibrary/components/editTextLibrary.vue @@ -0,0 +1,392 @@ + + diff --git a/src/views/threeSystems/soLibrary/components/list.vue b/src/views/threeSystems/soLibrary/components/list.vue new file mode 100644 index 0000000..0ad9957 --- /dev/null +++ b/src/views/threeSystems/soLibrary/components/list.vue @@ -0,0 +1,527 @@ + + + diff --git a/src/views/threeSystems/soLibrary/components/listEm.vue b/src/views/threeSystems/soLibrary/components/listEm.vue new file mode 100644 index 0000000..b349535 --- /dev/null +++ b/src/views/threeSystems/soLibrary/components/listEm.vue @@ -0,0 +1,504 @@ + + + diff --git a/src/views/threeSystems/soLibrary/components/textLibraryInfo.vue b/src/views/threeSystems/soLibrary/components/textLibraryInfo.vue new file mode 100644 index 0000000..b104a8f --- /dev/null +++ b/src/views/threeSystems/soLibrary/components/textLibraryInfo.vue @@ -0,0 +1,146 @@ + + diff --git a/src/views/threeSystems/soLibrary/components/updateFile.vue b/src/views/threeSystems/soLibrary/components/updateFile.vue new file mode 100644 index 0000000..edcaa19 --- /dev/null +++ b/src/views/threeSystems/soLibrary/components/updateFile.vue @@ -0,0 +1,77 @@ + + diff --git a/src/views/threeSystems/soLibrary/components/updateLog.vue b/src/views/threeSystems/soLibrary/components/updateLog.vue new file mode 100644 index 0000000..ee30bd2 --- /dev/null +++ b/src/views/threeSystems/soLibrary/components/updateLog.vue @@ -0,0 +1,55 @@ + + diff --git a/src/views/threeSystems/soLibrary/index.vue b/src/views/threeSystems/soLibrary/index.vue new file mode 100644 index 0000000..8d78561 --- /dev/null +++ b/src/views/threeSystems/soLibrary/index.vue @@ -0,0 +1,19 @@ + + diff --git a/src/views/threeSystems/spmLibrary/components/condition.vue b/src/views/threeSystems/spmLibrary/components/condition.vue new file mode 100644 index 0000000..051c13e --- /dev/null +++ b/src/views/threeSystems/spmLibrary/components/condition.vue @@ -0,0 +1,188 @@ + + + + diff --git a/src/views/threeSystems/spmLibrary/components/dashboard.vue b/src/views/threeSystems/spmLibrary/components/dashboard.vue new file mode 100644 index 0000000..f9b3596 --- /dev/null +++ b/src/views/threeSystems/spmLibrary/components/dashboard.vue @@ -0,0 +1,38 @@ + + + diff --git a/src/views/threeSystems/spmLibrary/components/editTextLibrary.vue b/src/views/threeSystems/spmLibrary/components/editTextLibrary.vue new file mode 100644 index 0000000..723dffc --- /dev/null +++ b/src/views/threeSystems/spmLibrary/components/editTextLibrary.vue @@ -0,0 +1,390 @@ + + diff --git a/src/views/threeSystems/spmLibrary/components/list.vue b/src/views/threeSystems/spmLibrary/components/list.vue new file mode 100644 index 0000000..11e7164 --- /dev/null +++ b/src/views/threeSystems/spmLibrary/components/list.vue @@ -0,0 +1,526 @@ + + + diff --git a/src/views/threeSystems/spmLibrary/components/listEm.vue b/src/views/threeSystems/spmLibrary/components/listEm.vue new file mode 100644 index 0000000..436e2ab --- /dev/null +++ b/src/views/threeSystems/spmLibrary/components/listEm.vue @@ -0,0 +1,503 @@ + + + diff --git a/src/views/threeSystems/spmLibrary/components/textLibraryInfo.vue b/src/views/threeSystems/spmLibrary/components/textLibraryInfo.vue new file mode 100644 index 0000000..e9f9aac --- /dev/null +++ b/src/views/threeSystems/spmLibrary/components/textLibraryInfo.vue @@ -0,0 +1,146 @@ + + diff --git a/src/views/threeSystems/spmLibrary/components/updateFile.vue b/src/views/threeSystems/spmLibrary/components/updateFile.vue new file mode 100644 index 0000000..edcaa19 --- /dev/null +++ b/src/views/threeSystems/spmLibrary/components/updateFile.vue @@ -0,0 +1,77 @@ + + diff --git a/src/views/threeSystems/spmLibrary/components/updateLog.vue b/src/views/threeSystems/spmLibrary/components/updateLog.vue new file mode 100644 index 0000000..ee30bd2 --- /dev/null +++ b/src/views/threeSystems/spmLibrary/components/updateLog.vue @@ -0,0 +1,55 @@ + + diff --git a/src/views/threeSystems/spmLibrary/index.vue b/src/views/threeSystems/spmLibrary/index.vue new file mode 100644 index 0000000..8d78561 --- /dev/null +++ b/src/views/threeSystems/spmLibrary/index.vue @@ -0,0 +1,19 @@ + + diff --git a/src/views/threeSystems/sprLibrary/components/condition.vue b/src/views/threeSystems/sprLibrary/components/condition.vue new file mode 100644 index 0000000..fbb3b86 --- /dev/null +++ b/src/views/threeSystems/sprLibrary/components/condition.vue @@ -0,0 +1,188 @@ + + + + diff --git a/src/views/threeSystems/sprLibrary/components/dashboard.vue b/src/views/threeSystems/sprLibrary/components/dashboard.vue new file mode 100644 index 0000000..e7c8301 --- /dev/null +++ b/src/views/threeSystems/sprLibrary/components/dashboard.vue @@ -0,0 +1,38 @@ + + + diff --git a/src/views/threeSystems/sprLibrary/components/editTextLibrary.vue b/src/views/threeSystems/sprLibrary/components/editTextLibrary.vue new file mode 100644 index 0000000..2cbf55b --- /dev/null +++ b/src/views/threeSystems/sprLibrary/components/editTextLibrary.vue @@ -0,0 +1,390 @@ + + diff --git a/src/views/threeSystems/sprLibrary/components/list.vue b/src/views/threeSystems/sprLibrary/components/list.vue new file mode 100644 index 0000000..f804ccb --- /dev/null +++ b/src/views/threeSystems/sprLibrary/components/list.vue @@ -0,0 +1,526 @@ + + + diff --git a/src/views/threeSystems/sprLibrary/components/listEm.vue b/src/views/threeSystems/sprLibrary/components/listEm.vue new file mode 100644 index 0000000..234e626 --- /dev/null +++ b/src/views/threeSystems/sprLibrary/components/listEm.vue @@ -0,0 +1,503 @@ + + + diff --git a/src/views/threeSystems/sprLibrary/components/textLibraryInfo.vue b/src/views/threeSystems/sprLibrary/components/textLibraryInfo.vue new file mode 100644 index 0000000..5ce9a08 --- /dev/null +++ b/src/views/threeSystems/sprLibrary/components/textLibraryInfo.vue @@ -0,0 +1,146 @@ + + diff --git a/src/views/threeSystems/sprLibrary/components/updateFile.vue b/src/views/threeSystems/sprLibrary/components/updateFile.vue new file mode 100644 index 0000000..edcaa19 --- /dev/null +++ b/src/views/threeSystems/sprLibrary/components/updateFile.vue @@ -0,0 +1,77 @@ + + diff --git a/src/views/threeSystems/sprLibrary/components/updateLog.vue b/src/views/threeSystems/sprLibrary/components/updateLog.vue new file mode 100644 index 0000000..ee30bd2 --- /dev/null +++ b/src/views/threeSystems/sprLibrary/components/updateLog.vue @@ -0,0 +1,55 @@ + + diff --git a/src/views/threeSystems/sprLibrary/index.vue b/src/views/threeSystems/sprLibrary/index.vue new file mode 100644 index 0000000..8d78561 --- /dev/null +++ b/src/views/threeSystems/sprLibrary/index.vue @@ -0,0 +1,19 @@ + +