FlowImg.js 522 Bytes
Newer Older
王绍森's avatar
王绍森 committed
1 2 3 4 5
/**
 * 徐立
 * 2019年9月22日
 * 流程图
 */
6
import React, { Component } from 'react';
王绍森's avatar
王绍森 committed
7 8
import config from '@/config/config';
export default class FlowImg extends Component {
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
	render() {
		let { id } = this.props;
		return (
			<div
				style={{
					width: '98%',
					textAlign: 'center',
					minHeight: '300px',
					paddingTop: '50px',
					paddingBottom: '50px',
					overflowX: 'auto',
				}}>
				<img src={config.sqlFormsServer + '/UnifiedAppFormApi/getProcessImg?appId=' + id} alt="" />
			</div>
		);
	}
王绍森's avatar
王绍森 committed
25
}