From 6bbe73072fcb0ee0b7f190e0f3da286518c3d7a0 Mon Sep 17 00:00:00 2001
From: liyj <1003249715@qq.com>
Date: Thu, 05 Sep 2024 20:37:00 +0800
Subject: [PATCH] Merge branch 'master' of http://120.79.193.119:9090/r/gzzfw/frontEnd/gzDyh

---
 gz-customerSystem/src/views/register/eventFlow/index.jsx |   27 +++++++++++++++------------
 1 files changed, 15 insertions(+), 12 deletions(-)

diff --git a/gz-customerSystem/src/views/register/eventFlow/index.jsx b/gz-customerSystem/src/views/register/eventFlow/index.jsx
index 17dd752..cc04637 100644
--- a/gz-customerSystem/src/views/register/eventFlow/index.jsx
+++ b/gz-customerSystem/src/views/register/eventFlow/index.jsx
@@ -2,7 +2,7 @@
  * @Author: dminyi 1301963064@qq.com
  * @Date: 2024-08-09 09:59:43
  * @LastEditors: dminyi 1301963064@qq.com
- * @LastEditTime: 2024-08-28 14:38:20
+ * @LastEditTime: 2024-08-31 17:13:53
  * @FilePath: \gzDyh\gz-customerSystem\src\views\basicInformation\organization\index.jsx
  * @Description: 来访登记
  */
@@ -12,10 +12,11 @@
 import * as $$ from '@/utils/utility';
 import "@arco-themes/react-gzzz/css/arco.css";
 import '../index.less';
-import { Button, Steps, Tabs, Message } from '@arco-design/web-react';
-import { question, register, Matter, transfer } from '@/assets/images'
+import { Steps, Tabs } from '@arco-design/web-react';
+import { examine, Matter, transfer } from '@/assets/images'
 import EventFlow from './component/EventFlow';
-import MatterDetali from '../matterDetail';
+import MatterDetail from '../matterDetail';
+import Examine from "./component/Examine";
 
 const Step = Steps.Step;
 const TabPane = Tabs.TabPane;
@@ -36,6 +37,11 @@
 			key: '2',
 			isNeedStep: true,//加上这个就有进度条
 		},
+		{
+			img: examine,
+			label: '审核',
+			key: '3',
+		},
 	])
 
 
@@ -43,7 +49,7 @@
 		<div style={{ position: 'relative' }}>
 			<NewPage
 				pageHead={
-					{ breadcrumbData: [{ title: '工作台' }, { title: '事件中心' }], title: '办理反馈' }
+					{ breadcrumbData: [{ title: '工作台' }, { title: '事件中心' }], title: '处理' }
 				}
 			>
 				<Tabs
@@ -62,7 +68,7 @@
 							}
 						>
 							{
-								item.isNeedStep && <div style={{ backgroundColor: '#fff', margin: '12px 16px 0px 16px', paddingTop: '16px', paddingLeft: '91px' }}>
+								item.isNeedStep && <div style={{ backgroundColor: '#fff', margin: '0 16px 0px 16px', paddingTop: '16px', paddingLeft: '91px' }}>
 									<Steps type='navigation' current={current}>
 										<Step title='来访登记' disabled />
 										<Step title='事件流转' disabled />
@@ -73,12 +79,9 @@
 									</Steps>
 								</div>
 							}
-							{tabsActive === '1' &&
-								<MatterDetali />
-							}
-							{
-								(tabsActive === '2' && current === 2) && <EventFlow />
-							}
+							{tabsActive === '1' && <MatterDetail />}
+							{tabsActive === '2' && <EventFlow />}
+							{tabsActive === '3' && <Examine />}
 						</TabPane>
 					})}
 				</Tabs>

--
Gitblit v1.8.0