(recordId:any)
| 32 | |
| 33 | |
| 34 | const handlerUrgeFlow = (recordId:any) => { |
| 35 | const body = { |
| 36 | recordId, |
| 37 | } |
| 38 | urge(body).then(res => { |
| 39 | if (res.success) { |
| 40 | message.success('催办提醒已发送').then(); |
| 41 | reloadTable(); |
| 42 | } |
| 43 | }) |
| 44 | } |
| 45 | |
| 46 | const columns = [ |
| 47 | { |
no test coverage detected