|
|
|
@ -130,7 +130,7 @@
|
|
|
|
|
</template> |
|
|
|
|
<template v-else-if="r.status == 1"> |
|
|
|
|
|
|
|
|
|
<a href="javascript:void(0);" v-if="r.procInstStatus == 1" @click="cancel(r)" style="color:#8000ff;">撤回</a> |
|
|
|
|
<a href="javascript:void(0);" v-if="r.procInstStatus == 1" @click="handelSubmitCancel(r)" style="color:#8000ff;">撤回</a> |
|
|
|
|
<a-divider type="vertical" v-if="r.procInstStatus == 1"/> |
|
|
|
|
<a href="javascript:void(0);" @click="history(r)" style="color:blue;">查看进度</a> |
|
|
|
|
<a-divider type="vertical" /> |
|
|
|
@ -238,7 +238,7 @@
|
|
|
|
|
</a-modal> |
|
|
|
|
<a-modal title="确认撤回" v-model="modalCancelVisible" :mask-closable="false" :width="500"> |
|
|
|
|
<a-form ref="delForm" v-model="cancelForm" :label-width="70" v-if="modalCancelVisible"> |
|
|
|
|
<a-form-item label="撤回原因" prop="reason"> |
|
|
|
|
<a-form-item label="撤回原因" prop="reason" v-show="false"> |
|
|
|
|
<a-input type="textarea" v-model="cancelForm.reason" :rows="4" /> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-form> |
|
|
|
@ -553,17 +553,27 @@
|
|
|
|
|
this.cancelForm.procInstId = v.procInstId; |
|
|
|
|
this.modalCancelVisible = true; |
|
|
|
|
}, |
|
|
|
|
handelSubmitCancel() { |
|
|
|
|
this.submitLoading = true; |
|
|
|
|
this.postFormAction(this.url.cancelApply,this.cancelForm).then(res => { |
|
|
|
|
if (res.success) { |
|
|
|
|
this.$message.success("操作成功"); |
|
|
|
|
this.loadData(); |
|
|
|
|
this.modalCancelVisible = false; |
|
|
|
|
}else { |
|
|
|
|
this.$message.error(res.message); |
|
|
|
|
handelSubmitCancel(v) { |
|
|
|
|
this.$confirm({ |
|
|
|
|
title: '撤回', |
|
|
|
|
content: `您确定要撤回吗?`, |
|
|
|
|
centered: true, |
|
|
|
|
onOk: () => { |
|
|
|
|
this.cancelForm.id = v.id; |
|
|
|
|
this.cancelForm.procInstId = v.procInstId; |
|
|
|
|
this.submitLoading = true; |
|
|
|
|
this.postFormAction(this.url.cancelApply,this.cancelForm).then(res => { |
|
|
|
|
if (res.success) { |
|
|
|
|
this.$message.success("操作成功"); |
|
|
|
|
this.loadData(); |
|
|
|
|
this.modalCancelVisible = false; |
|
|
|
|
}else { |
|
|
|
|
this.$message.error(res.message); |
|
|
|
|
} |
|
|
|
|
}).finally(()=>this.submitLoading = false); |
|
|
|
|
} |
|
|
|
|
}).finally(()=>this.submitLoading = false); |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
history(v) { |
|
|
|
|
if (!v.procInstId) { |
|
|
|
|