|
|
@@ -169,6 +169,10 @@ function handleToCancelProcess(process) {
|
|
|
editable: true,
|
|
|
placeholderText: '请输入撤回备注',
|
|
|
success: ({confirm, content}) => {
|
|
|
+ if (content == '') {
|
|
|
+ $modal.msgError('撤回备注不能为空!')
|
|
|
+ return
|
|
|
+ }
|
|
|
if (confirm) {
|
|
|
cancelProcessFlow(userStore.user.useId, content, process)
|
|
|
.then(({ returnMsg }) => {
|