From 2cb7496c7e5e34f30ad6884b796faf05deb78646 Mon Sep 17 00:00:00 2001 From: liujun Date: Mon, 18 Dec 2023 18:54:49 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9B=B8=E5=85=B3=E6=96=B9=E9=9C=80=E6=B1=82?= =?UTF-8?q?=E5=8F=98=E9=9D=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/train/flow/components/QRCode.vue | 36 ++ src/views/train/flow/components/apply.vue | 320 +++++++++++ src/views/train/flow/components/list.vue | 255 +++++++++ src/views/train/flow/components/picture.vue | 36 ++ src/views/train/flow/components/record.vue | 198 +++++++ src/views/train/flow/components/sendUtil.vue | 130 +++++ src/views/train/flow/components/user.vue | 250 +++++++++ src/views/train/flow/components/users.vue | 513 ++++++++++++++++++ src/views/train/flow/index.vue | 23 + src/views/train/synInfo/components/QRCode.vue | 36 ++ src/views/train/synInfo/components/apply.vue | 320 +++++++++++ src/views/train/synInfo/components/list.vue | 240 ++++++++ .../train/synInfo/components/picture.vue | 36 ++ src/views/train/synInfo/components/record.vue | 198 +++++++ .../train/synInfo/components/sendUtil.vue | 130 +++++ src/views/train/synInfo/components/user.vue | 250 +++++++++ .../train/synInfo/components/userInfo.vue | 327 +++++++++++ src/views/train/synInfo/components/users.vue | 513 ++++++++++++++++++ src/views/train/synInfo/index.vue | 23 + 19 files changed, 3834 insertions(+) create mode 100644 src/views/train/flow/components/QRCode.vue create mode 100644 src/views/train/flow/components/apply.vue create mode 100644 src/views/train/flow/components/list.vue create mode 100644 src/views/train/flow/components/picture.vue create mode 100644 src/views/train/flow/components/record.vue create mode 100644 src/views/train/flow/components/sendUtil.vue create mode 100644 src/views/train/flow/components/user.vue create mode 100644 src/views/train/flow/components/users.vue create mode 100644 src/views/train/flow/index.vue create mode 100644 src/views/train/synInfo/components/QRCode.vue create mode 100644 src/views/train/synInfo/components/apply.vue create mode 100644 src/views/train/synInfo/components/list.vue create mode 100644 src/views/train/synInfo/components/picture.vue create mode 100644 src/views/train/synInfo/components/record.vue create mode 100644 src/views/train/synInfo/components/sendUtil.vue create mode 100644 src/views/train/synInfo/components/user.vue create mode 100644 src/views/train/synInfo/components/userInfo.vue create mode 100644 src/views/train/synInfo/components/users.vue create mode 100644 src/views/train/synInfo/index.vue diff --git a/src/views/train/flow/components/QRCode.vue b/src/views/train/flow/components/QRCode.vue new file mode 100644 index 0000000..297e138 --- /dev/null +++ b/src/views/train/flow/components/QRCode.vue @@ -0,0 +1,36 @@ + + + + + diff --git a/src/views/train/flow/components/apply.vue b/src/views/train/flow/components/apply.vue new file mode 100644 index 0000000..199811d --- /dev/null +++ b/src/views/train/flow/components/apply.vue @@ -0,0 +1,320 @@ + + + diff --git a/src/views/train/flow/components/list.vue b/src/views/train/flow/components/list.vue new file mode 100644 index 0000000..880e19b --- /dev/null +++ b/src/views/train/flow/components/list.vue @@ -0,0 +1,255 @@ + + + + diff --git a/src/views/train/flow/components/picture.vue b/src/views/train/flow/components/picture.vue new file mode 100644 index 0000000..57e7255 --- /dev/null +++ b/src/views/train/flow/components/picture.vue @@ -0,0 +1,36 @@ + + + + + diff --git a/src/views/train/flow/components/record.vue b/src/views/train/flow/components/record.vue new file mode 100644 index 0000000..e82258d --- /dev/null +++ b/src/views/train/flow/components/record.vue @@ -0,0 +1,198 @@ + + + + diff --git a/src/views/train/flow/components/sendUtil.vue b/src/views/train/flow/components/sendUtil.vue new file mode 100644 index 0000000..3b46ac8 --- /dev/null +++ b/src/views/train/flow/components/sendUtil.vue @@ -0,0 +1,130 @@ + + + + + diff --git a/src/views/train/flow/components/user.vue b/src/views/train/flow/components/user.vue new file mode 100644 index 0000000..889dc08 --- /dev/null +++ b/src/views/train/flow/components/user.vue @@ -0,0 +1,250 @@ + + + + + diff --git a/src/views/train/flow/components/users.vue b/src/views/train/flow/components/users.vue new file mode 100644 index 0000000..2d11653 --- /dev/null +++ b/src/views/train/flow/components/users.vue @@ -0,0 +1,513 @@ + + + diff --git a/src/views/train/flow/index.vue b/src/views/train/flow/index.vue new file mode 100644 index 0000000..70cda6e --- /dev/null +++ b/src/views/train/flow/index.vue @@ -0,0 +1,23 @@ + + + + + diff --git a/src/views/train/synInfo/components/QRCode.vue b/src/views/train/synInfo/components/QRCode.vue new file mode 100644 index 0000000..297e138 --- /dev/null +++ b/src/views/train/synInfo/components/QRCode.vue @@ -0,0 +1,36 @@ + + + + + diff --git a/src/views/train/synInfo/components/apply.vue b/src/views/train/synInfo/components/apply.vue new file mode 100644 index 0000000..199811d --- /dev/null +++ b/src/views/train/synInfo/components/apply.vue @@ -0,0 +1,320 @@ + + + diff --git a/src/views/train/synInfo/components/list.vue b/src/views/train/synInfo/components/list.vue new file mode 100644 index 0000000..5ab5deb --- /dev/null +++ b/src/views/train/synInfo/components/list.vue @@ -0,0 +1,240 @@ + + + + diff --git a/src/views/train/synInfo/components/picture.vue b/src/views/train/synInfo/components/picture.vue new file mode 100644 index 0000000..57e7255 --- /dev/null +++ b/src/views/train/synInfo/components/picture.vue @@ -0,0 +1,36 @@ + + + + + diff --git a/src/views/train/synInfo/components/record.vue b/src/views/train/synInfo/components/record.vue new file mode 100644 index 0000000..e82258d --- /dev/null +++ b/src/views/train/synInfo/components/record.vue @@ -0,0 +1,198 @@ + + + + diff --git a/src/views/train/synInfo/components/sendUtil.vue b/src/views/train/synInfo/components/sendUtil.vue new file mode 100644 index 0000000..3b46ac8 --- /dev/null +++ b/src/views/train/synInfo/components/sendUtil.vue @@ -0,0 +1,130 @@ + + + + + diff --git a/src/views/train/synInfo/components/user.vue b/src/views/train/synInfo/components/user.vue new file mode 100644 index 0000000..889dc08 --- /dev/null +++ b/src/views/train/synInfo/components/user.vue @@ -0,0 +1,250 @@ + + + + + diff --git a/src/views/train/synInfo/components/userInfo.vue b/src/views/train/synInfo/components/userInfo.vue new file mode 100644 index 0000000..6a38268 --- /dev/null +++ b/src/views/train/synInfo/components/userInfo.vue @@ -0,0 +1,327 @@ + + + + + diff --git a/src/views/train/synInfo/components/users.vue b/src/views/train/synInfo/components/users.vue new file mode 100644 index 0000000..2d11653 --- /dev/null +++ b/src/views/train/synInfo/components/users.vue @@ -0,0 +1,513 @@ + + + diff --git a/src/views/train/synInfo/index.vue b/src/views/train/synInfo/index.vue new file mode 100644 index 0000000..70cda6e --- /dev/null +++ b/src/views/train/synInfo/index.vue @@ -0,0 +1,23 @@ + + + + +