From 466f59f771bc9306079728ba4363f4b204d5beca Mon Sep 17 00:00:00 2001
From: xusd <hugeinfo123>
Date: Fri, 13 Sep 2024 17:57:38 +0800
Subject: [PATCH] 流转督办先去除99的红框显示
---
gz-customerSystem/src/views/test/index.jsx | 32 ++++++++++++++++++++++++++++----
1 files changed, 28 insertions(+), 4 deletions(-)
diff --git a/gz-customerSystem/src/views/test/index.jsx b/gz-customerSystem/src/views/test/index.jsx
index 201c32c..46b64f5 100644
--- a/gz-customerSystem/src/views/test/index.jsx
+++ b/gz-customerSystem/src/views/test/index.jsx
@@ -2,14 +2,15 @@
* @Company: hugeInfo
* @Author: lwh
* @Date: 2023-06-10 15:31:10
- * @LastEditTime: 2023-06-10 16:02:52
- * @LastEditors: lwh
+ * @LastEditTime: 2024-08-09 14:37:53
+ * @LastEditors: dminyi 1301963064@qq.com
* @Version: 1.0.0
* @Description:
*/
import React, { useEffect, useState } from 'react';
import './index.less'
import * as $$ from '../../utils/utility';
+import { Row, Col, Space, Tabs, Button } from 'antd';
// 获取各类型案件数
function getCaseNumDataApi(submitData) {
@@ -37,7 +38,29 @@
return (
<>
- <div className='card'>
+ <Tabs
+ defaultActiveKey="1"
+ items={[
+ {
+ label: 'Tab 1',
+ key: '1',
+ children: 'Tab 1',
+ },
+ {
+ label: 'Tab 2',
+ key: '2',
+ children: 'Tab 2',
+ disabled: true,
+ },
+ {
+ label: 'Tab 3',
+ key: '3',
+ children: 'Tab 3',
+ },
+ ]}
+ />
+
+ {/* <div className='card'>
<div className='card-head'>
<div className='card-head-left'>countSfqrJudic:{data.countSfqrJudic}</div>
<div className='card-head-right'>countTjcgResult:{data.countTjcgResult}</div>
@@ -50,7 +73,8 @@
<div className='card-main-row'></div>
<div className='card-main-row'></div>
</div>
- </div>
+ </div> */}
+
</>
)
}
--
Gitblit v1.8.0