From 5ce61fa5e58a8d9c70759251b73657475cd21a8b Mon Sep 17 00:00:00 2001 From: gaoyunqi Date: Wed, 21 Feb 2024 15:52:18 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=88=9D=E6=AD=A5=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E5=AE=A1=E6=89=B9=E9=A1=B5=E9=9D=A2=E7=9A=84=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=EF=BC=8C=E5=A2=9E=E5=8A=A0=E8=BE=93=E5=85=A5=E5=AE=A1=E6=89=B9?= =?UTF-8?q?=E6=84=8F=E8=A7=81=E7=9A=84=E5=AF=B9=E8=AF=9D=E6=A1=86=EF=BC=8C?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=89=93=E5=BC=80=E8=8D=89=E7=A8=BF=E6=97=B6?= =?UTF-8?q?tab=E9=A1=B5=E6=A0=87=E9=A2=98=E4=B8=8D=E5=AF=B9=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/SecondDev/OpinionDialog.vue | 67 +++++++++ src/design/theme.less | 23 +++ src/router/routes/basic.ts | 2 +- src/views/secondDev/approveFlowPage.vue | 134 ++++++++++++++++++ src/views/secondDev/createFlow.vue | 128 ++++++++++++++--- .../task/components/processTasks/DraftsV2.vue | 2 +- 6 files changed, 335 insertions(+), 21 deletions(-) create mode 100644 src/components/SecondDev/OpinionDialog.vue create mode 100644 src/views/secondDev/approveFlowPage.vue diff --git a/src/components/SecondDev/OpinionDialog.vue b/src/components/SecondDev/OpinionDialog.vue new file mode 100644 index 0000000..101b58f --- /dev/null +++ b/src/components/SecondDev/OpinionDialog.vue @@ -0,0 +1,67 @@ + + + + + diff --git a/src/design/theme.less b/src/design/theme.less index ec14009..85da5ed 100644 --- a/src/design/theme.less +++ b/src/design/theme.less @@ -70,3 +70,26 @@ html[data-theme='light'] { } } } + +.geg-flow-page { + padding: 10px; + background-color: #fff; + + .top-toolbar { + padding-bottom: 15px; + border-bottom: 1px solid #eee; + } + + .ant-input-affix-wrapper-disabled { + background-color: transparent; + } + + .ant-input[disabled] { + color: rgb(0 0 0 / 85%); + } +} + +.page-bg-wrap { + background-color: rgb(246 247 249); + padding: 10px; +} diff --git a/src/router/routes/basic.ts b/src/router/routes/basic.ts index 68975af..ba4cf56 100644 --- a/src/router/routes/basic.ts +++ b/src/router/routes/basic.ts @@ -144,7 +144,7 @@ export const FLOW_ROUTE: AppRouteRecordRaw = { { path: 'approveFlow', name: 'ApproveFlow', - component: () => import('/@/views/secondDev/approveFlow.vue'), + component: () => import('/@/views/secondDev/approveFlowPage.vue'), meta: { title: '审批流程' } diff --git a/src/views/secondDev/approveFlowPage.vue b/src/views/secondDev/approveFlowPage.vue new file mode 100644 index 0000000..4e4da11 --- /dev/null +++ b/src/views/secondDev/approveFlowPage.vue @@ -0,0 +1,134 @@ + + + diff --git a/src/views/secondDev/createFlow.vue b/src/views/secondDev/createFlow.vue index 5d1918f..256413b 100644 --- a/src/views/secondDev/createFlow.vue +++ b/src/views/secondDev/createFlow.vue @@ -1,7 +1,7 @@