AddModal.jsx 649 Bytes
Newer Older
徐立's avatar
徐立 committed
1 2 3 4 5
/**
 * 徐立
 * 2019年9月19日
 * 事务发起提交多次弹框
 */
6
import React, { Component } from 'react';
7 8 9
import { getModal } from '@/webPublic/one_stop_public/utils/utils';
const Modal = getModal();

徐立's avatar
徐立 committed
10
export default class AddModal extends Component {
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
	render() {
		let { visible, handleCancel, handleOk, loading } = this.props;
		return (
			<Modal
				title="提交申请"
				visible={visible}
				onOk={handleOk}
				confirmLoading={loading}
				onCancel={handleCancel}
				width={400}>
				<p style={{ width: '100%', textAlign: 'center', fontSize: 14, color: '#666666' }}>
					确定要提交申请吗?
				</p>
			</Modal>
		);
	}
徐立's avatar
徐立 committed
27
}