feat: 评论完了

This commit is contained in:
2025-09-18 13:36:29 +08:00
parent 219a3ac151
commit aafb48bacd
8 changed files with 755 additions and 17 deletions

View File

@@ -32,7 +32,7 @@ const CancelPopup = forwardRef((props, ref) => {
onFinish.current = onAct;
setVisible(true);
setTimeout(() => {
inputRef.current.focus();
inputRef.current && inputRef.current.focus();
}, 0);
},
}));
@@ -87,6 +87,7 @@ const CancelPopup = forwardRef((props, ref) => {
focus
value={cancelReason}
onInput={(e) => setCancelReason(e.detail.value)}
maxlength={100}
/>
</View>
)}