广州矛调粤政易端
xusd
7 days ago d27794814b69d18aeb8ee96a46cae91d5613570c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * @Company: hugeInfo
 * @Author: lwh
 * @Date: 2025-04-08 09:28:00
 * @LastEditTime: 2025-04-08 09:50:41
 * @LastEditors: lwh
 * @Version: 1.0.0
 * @Description: 
 */
// 流程节点组件
 
import React, { useState, useEffect } from 'react';
import { useLocation } from 'react-router-dom';
import ProgressStep from '../../../../components/ProgressStep/VisitStep';
import * as $$ from '../../../../utils/utility';
import './index.less';
 
 
const Lzjd = ({progressData}) => {
    const location = useLocation();
    // 使用现有的getQueryString方法或从location中获取查询参数
 
    return (
        <div className="flow">
            <ProgressStep progressData={progressData} />
        </div>
    )
}
 
export default Lzjd;