From 3c3ac0c2c225f763fffb05ad669d76b50b4f6e45 Mon Sep 17 00:00:00 2001 From: zhangyongtian <1181606322@qq.com> Date: Fri, 06 Sep 2024 16:17:04 +0800 Subject: [PATCH] Merge branch 'master' of http://120.79.193.119:9090/r/gzzfw/frontEnd/gzDyh --- gz-customerSystem/src/views/register/handleFeedback/index.jsx | 25 +++++++++++++++++++------ 1 files changed, 19 insertions(+), 6 deletions(-) diff --git a/gz-customerSystem/src/views/register/handleFeedback/index.jsx b/gz-customerSystem/src/views/register/handleFeedback/index.jsx index eab6de3..d384530 100644 --- a/gz-customerSystem/src/views/register/handleFeedback/index.jsx +++ b/gz-customerSystem/src/views/register/handleFeedback/index.jsx @@ -1,10 +1,12 @@ + /* * @Author: dminyi 1301963064@qq.com * @Date: 2024-08-09 09:59:43 * @LastEditors: dminyi 1301963064@qq.com - * @LastEditTime: 2024-09-03 14:44:51 + * @LastEditTime: 2024-09-06 12:03:54 * @FilePath: \gzDyh\gz-customerSystem\src\views\basicInformation\organization\index.jsx * @Description: 来访登记 + * */ import React, { useState, useRef, Fragment } from "react"; @@ -12,16 +14,17 @@ import * as $$ from '@/utils/utility'; import "@arco-themes/react-gzzz/css/arco.css"; import '../index.less'; -import { Typography, Steps, Tabs, Message } from '@arco-design/web-react'; -import { question, register, Matter, transfer } from '@/assets/images' +import { Typography, Steps, Tabs } from '@arco-design/web-react'; +import { Audit, Matter, transfer } from '@/assets/images' import MatterDetail from '../matterDetail'; import Handle from './component/handle'; +import AuditView from './component/AuditView' const Step = Steps.Step; const TabPane = Tabs.TabPane; const style = { - // textAlign: 'center', - // marginTop: 20, + // textAlign: 'center', + // marginTop: 20, }; @@ -39,6 +42,11 @@ label: '流转办理', key: '2', isNeedStep: true,//加上这个就有进度条 + }, + { + img: Audit, + label: '审核', + key: '3', }, ]) @@ -78,13 +86,18 @@ </div> } {tabsActive === '1' && - <MatterDetail hasApplet={true} hasEditBtn={true}/> + <MatterDetail hasApplet={true} hasEditBtn={true} /> } { tabsActive === '2' && <Typography.Paragraph style={style}> <Handle /> </Typography.Paragraph> } + { + tabsActive === '3' && <Typography.Paragraph style={style}> + <AuditView /> + </Typography.Paragraph> + } </TabPane> })} </Tabs> -- Gitblit v1.8.0