/*
|
* @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;
|