Commit e0b1566f authored by pengyunqian's avatar pengyunqian

feat:解冻按钮失败原因提示

parent 3f52fb22
...@@ -630,7 +630,8 @@ export default { ...@@ -630,7 +630,8 @@ export default {
// 解冻 // 解冻
async handleFinzingFind(id) { async handleFinzingFind(id) {
try { try {
await getFreezingFund({ id }); const res= await getFreezingFund({ id });
if (res.code !== 0) return this.$message.error(res.reason);
this.getApplyList(); this.getApplyList();
ElMessage.success("解冻成功"); ElMessage.success("解冻成功");
} catch (error) { } catch (error) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment