|
|
@ -2,9 +2,9 @@ |
|
|
|
|
|
|
|
import React from 'react'; |
|
|
|
import { connect } from 'react-redux'; |
|
|
|
import { Modal, Spin, Notification, Row } from '@douyinfe/semi-ui'; |
|
|
|
import { Modal, Spin, Notification, Row, Space, Button } from '@douyinfe/semi-ui'; |
|
|
|
import { RouteTable } from '../../utils/webapi'; |
|
|
|
import { RouteRequest } from '@peace/utils'; |
|
|
|
import { EmisRequest, EmisApiTable } from '$utils'; |
|
|
|
import { useState } from 'react'; |
|
|
|
import { useEffect } from 'react'; |
|
|
|
import { IconClose } from '@douyinfe/semi-icons'; |
|
|
@ -14,7 +14,7 @@ import './index.less' |
|
|
|
const { confirm } = Modal; |
|
|
|
|
|
|
|
const WorkFlowModal = (props) => { |
|
|
|
const { successCallBack = () => { }, title, visible, clientHeight, postData, processId, user, dispatch, webEmis, webOa } = props; |
|
|
|
const { successCallBack = () => { }, title, visible, clientHeight, postData, processId, user, dispatch, webEmis, webOa, onCancel } = props; |
|
|
|
const [loading, setLoading] = useState(true); |
|
|
|
const [ifShowMessage, setIfShowMessage] = useState(true); |
|
|
|
const [customVisible, setCustomVisible] = useState(false); |
|
|
@ -25,7 +25,6 @@ const WorkFlowModal = (props) => { |
|
|
|
if (draftId) { |
|
|
|
setCustomVisible(false); |
|
|
|
} else { |
|
|
|
const { onCancel } = props; |
|
|
|
onCancel && onCancel(); |
|
|
|
setLoading(false); |
|
|
|
} |
|
|
@ -60,18 +59,13 @@ const WorkFlowModal = (props) => { |
|
|
|
} |
|
|
|
|
|
|
|
const handelDeny = () => { |
|
|
|
// dispatch(delDraft(draftId)).then(res => { |
|
|
|
// if (res.success) { |
|
|
|
// Notification.success({title:'删除草稿成功'}); |
|
|
|
// const { onCancel } = props; |
|
|
|
// onCancel && onCancel(); |
|
|
|
// setLoading(false); |
|
|
|
// setCustomVisible(false); |
|
|
|
// setDraftId(null); |
|
|
|
// } else { |
|
|
|
// Notification.error({title:'删除草稿失败,请联系管理员'}); |
|
|
|
// } |
|
|
|
// }) |
|
|
|
EmisRequest.delete(EmisApiTable.delDraftUrl.replace('{draftId}', draftId)).then(res => { |
|
|
|
Notification.success({ title: '删除草稿成功' }); |
|
|
|
onCancel && onCancel(); |
|
|
|
setLoading(false); |
|
|
|
setCustomVisible(false); |
|
|
|
setDraftId(null); |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
const cancel = () => { |
|
|
@ -84,6 +78,7 @@ const WorkFlowModal = (props) => { |
|
|
|
let data = JSON.parse(event.data); |
|
|
|
const { type, isSaveDraft, setIntervalSave, draftId, msg } = data; |
|
|
|
if (msg) { |
|
|
|
console.log(msg); |
|
|
|
Notification.success({ title: msg }) |
|
|
|
} |
|
|
|
setDraftId(draftId); |
|
|
@ -109,7 +104,6 @@ const WorkFlowModal = (props) => { |
|
|
|
} |
|
|
|
//监听message事件 |
|
|
|
window.addEventListener('message', receiveMessageFromIndex, false); |
|
|
|
|
|
|
|
}, []) |
|
|
|
|
|
|
|
console.log(webEmis, processId); |
|
|
@ -124,7 +118,7 @@ const WorkFlowModal = (props) => { |
|
|
|
hasCancel={false} |
|
|
|
footer={null} |
|
|
|
wrapClassName='process_modal_wrap' |
|
|
|
onCancel={showConfirm} |
|
|
|
// onCancel={showConfirm} |
|
|
|
> |
|
|
|
<Row> |
|
|
|
<div className='workflow-body'> |
|
|
@ -158,16 +152,27 @@ const WorkFlowModal = (props) => { |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
{ |
|
|
|
customVisible ? <div className='modalBox'> |
|
|
|
<div className='modal'> |
|
|
|
<p className='content'>此表单已保存为草稿,是否需要保留</p> |
|
|
|
<ul className='btn'> |
|
|
|
<li className='confirm' onClick={() => handelOk()}>是</li> |
|
|
|
<li className='deny' onClick={() => handelDeny()}>否</li> |
|
|
|
<li className='cancel' onClick={() => cancel()}>取消</li> |
|
|
|
</ul> |
|
|
|
</div> |
|
|
|
</div> : '' |
|
|
|
customVisible ? |
|
|
|
<Modal |
|
|
|
title="此表单已保存为草稿,是否需要保留" |
|
|
|
visible={customVisible} |
|
|
|
footer={ |
|
|
|
<Space> |
|
|
|
<Button type="primary" onClick={() => handelOk()}> |
|
|
|
是 |
|
|
|
</Button> |
|
|
|
<Button type="primary" onClick={() => handelDeny()}> |
|
|
|
否 |
|
|
|
</Button> |
|
|
|
<Button type="primary" onClick={() => cancel()}> |
|
|
|
取消 |
|
|
|
</Button> |
|
|
|
</Space> |
|
|
|
|
|
|
|
} |
|
|
|
> |
|
|
|
</Modal> |
|
|
|
: '' |
|
|
|
} |
|
|
|
</Row> |
|
|
|
</Modal > |
|
|
|