import React, { Component } from 'react'; // import { Sym } from '../../Icon/index'; import './style.styl'; class Process extends Component { render() { const { info = {} } = this.props; return (
服务流程
{/*
{type === 'plan' ? ( ) : (
)}
{info.process.title}
*/} {info.process.list.map((item: any, index: number) => { return (
{/* {`(${index + 1})${item}`} */} {item}
); })}
{/* {type === 'plan' ? (
查看全部
) : ( '' )} */}
); } } export default Process;