develop #17

Merged
zsq merged 2 commits from develop into main 2026-04-27 17:46:38 +08:00
Showing only changes of commit 41c9f5909b - Show all commits

View File

@ -16,7 +16,10 @@ export default function ApplyClose(
trigger={
<MyButtons.Default
title="关闭"
disabled={props.item.status !== 'InProgress'}
disabled={
props.item.status !== 'InProgress' &&
props.item.status !== 'PendingFollowUp'
}
type="primary"
/>
}