From cccff1d16d403e960d3b44283275d3ed05c0e3c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=20=E6=9F=8F?= Date: Wed, 6 Sep 2023 13:02:40 +0000 Subject: [PATCH] fang create --- .../src/components/right/ActionProperty.vue | 57 +++++++++++ frontend/src/components/right/DatePicker.vue | 45 +++++++++ frontend/src/components/right/FieldInput.vue | 62 ++++++++++++ frontend/src/components/right/InputText.vue | 33 +++++++ frontend/src/components/right/SelectBox.vue | 36 +++++++ frontend/src/pages/testFlow.vue | 95 +++++++++++++++++++ frontend/src/router/routes.ts | 6 ++ 7 files changed, 334 insertions(+) create mode 100644 frontend/src/components/right/ActionProperty.vue create mode 100644 frontend/src/components/right/DatePicker.vue create mode 100644 frontend/src/components/right/FieldInput.vue create mode 100644 frontend/src/components/right/InputText.vue create mode 100644 frontend/src/components/right/SelectBox.vue create mode 100644 frontend/src/pages/testFlow.vue diff --git a/frontend/src/components/right/ActionProperty.vue b/frontend/src/components/right/ActionProperty.vue new file mode 100644 index 0000000..69f24c1 --- /dev/null +++ b/frontend/src/components/right/ActionProperty.vue @@ -0,0 +1,57 @@ + + + diff --git a/frontend/src/components/right/DatePicker.vue b/frontend/src/components/right/DatePicker.vue new file mode 100644 index 0000000..6f6b146 --- /dev/null +++ b/frontend/src/components/right/DatePicker.vue @@ -0,0 +1,45 @@ + + + diff --git a/frontend/src/components/right/FieldInput.vue b/frontend/src/components/right/FieldInput.vue new file mode 100644 index 0000000..c49865d --- /dev/null +++ b/frontend/src/components/right/FieldInput.vue @@ -0,0 +1,62 @@ + + + diff --git a/frontend/src/components/right/InputText.vue b/frontend/src/components/right/InputText.vue new file mode 100644 index 0000000..b548966 --- /dev/null +++ b/frontend/src/components/right/InputText.vue @@ -0,0 +1,33 @@ + + + diff --git a/frontend/src/components/right/SelectBox.vue b/frontend/src/components/right/SelectBox.vue new file mode 100644 index 0000000..f8a34c1 --- /dev/null +++ b/frontend/src/components/right/SelectBox.vue @@ -0,0 +1,36 @@ + + + diff --git a/frontend/src/pages/testFlow.vue b/frontend/src/pages/testFlow.vue new file mode 100644 index 0000000..6b9c9ff --- /dev/null +++ b/frontend/src/pages/testFlow.vue @@ -0,0 +1,95 @@ + + diff --git a/frontend/src/router/routes.ts b/frontend/src/router/routes.ts index d5bc374..c04f51b 100644 --- a/frontend/src/router/routes.ts +++ b/frontend/src/router/routes.ts @@ -16,6 +16,12 @@ const routes: RouteRecordRaw[] = [ component: () => import('layouts/MainLayout.vue'), children: [{ path: '', component: () => import('pages/testQursar.vue') }], }, + , + { + path: '/flow/', + component: () => import('layouts/MainLayout.vue'), + children: [{ path: '', component: () => import('pages/testFlow.vue') }], + }, // Always leave this as last one, // but you can also remove it