From 13c2d9fbfa4159841d61198b6cdbf8c5daa682c4 Mon Sep 17 00:00:00 2001
From: zhangyongtian <1181606322@qq.com>
Date: Sun, 08 Sep 2024 17:09:42 +0800
Subject: [PATCH] Merge branch 'master' of http://120.79.193.119:9090/r/gzzfw/frontEnd/gzDyh
---
gz-customerSystem/src/views/register/index.less | 24 ++++++++++++
gz-customerSystem/src/views/register/index.jsx | 71 ++++++++++++++++++++++++++++++++++-
2 files changed, 93 insertions(+), 2 deletions(-)
diff --git a/gz-customerSystem/src/views/register/index.jsx b/gz-customerSystem/src/views/register/index.jsx
index 31c0b8c..2da95a0 100644
--- a/gz-customerSystem/src/views/register/index.jsx
+++ b/gz-customerSystem/src/views/register/index.jsx
@@ -1,9 +1,76 @@
import React from 'react';
const VisitWorkBench = () => {
+
+ const tabsList = [
+ {
+ key: '1',
+ label: '待分派',
+ bgColor: '#E8F8FF',
+ num: 10,
+ },
+ {
+ key: '2',
+ label: '待签收',
+ bgColor: '#E8FFEA',
+ num: 30,
+
+ },
+ {
+ key: '3',
+ label: '待受理',
+ bgColor: '#F5E8FF',
+ num: 50,
+
+ },
+ {
+ key: '4',
+ label: '办理中',
+ bgColor: '#E6FFFB',
+ num: 60,
+
+ },
+ {
+ key: '5',
+ label: '待审核',
+ bgColor: '#E8F7FF',
+ num: 70,
+
+ },
+ {
+ key: '6',
+ label: '督办',
+ bgColor: '#FFF7E6',
+ num: 80,
+ },
+ ]
return (
- <>
- </>
+ <div className='VisitWorkBench'>
+ <div className='VisitWorkBench-top'>
+ 工作总览
+ <div className='VisitWorkBench-top-list'>
+ {
+ tabsList.map((item, index) => (
+ <div key={index} className='VisitWorkBench-top-list-tabsItem' style={{ backgroundColor: item.bgColor }}>
+ <div>
+ <div>{item.label}</div>
+ <div>{item.num}件</div>
+ </div>
+ <div>
+ <img src={item.img} alt=''/>
+ </div>
+ </div>
+ ))
+ }
+ </div>
+ </div>
+ <div className='VisitWorkBench-middle'>
+ 222
+ </div>
+ <div className='VisitWorkBench-bottom'>
+ 333333
+ </div>
+ </div>
)
}
diff --git a/gz-customerSystem/src/views/register/index.less b/gz-customerSystem/src/views/register/index.less
index 38205be..e661034 100644
--- a/gz-customerSystem/src/views/register/index.less
+++ b/gz-customerSystem/src/views/register/index.less
@@ -805,4 +805,28 @@
&-content{
margin-bottom: 16px;
}
+}
+
+.VisitWorkBench{
+ &-top{
+ background: #ffffff;
+ padding: 12px 16px 16px 16px;
+
+ &-list{
+ display: flex;
+ &-tabsItem{
+ padding: 12px 16px;
+ flex: 1;
+ }
+
+ }
+
+ }
+
+ &-middle{
+
+ }
+
+ &-bottom{}
+
}
\ No newline at end of file
--
Gitblit v1.8.0