This commit is contained in:
yj 2025-01-06 14:08:07 +08:00
parent 2abf010867
commit 956f045fad
1 changed files with 4 additions and 5 deletions

View File

@ -16,10 +16,6 @@ const FeedBackModel = forwardRef((_props: any, ref: any) => {
type: 0, type: 0,
}); });
const [feedBackList, _setFeedBackList] = useState([ const [feedBackList, _setFeedBackList] = useState([
{
text: "其他,需要手动填写",
value: 1
},
{ {
text: "软件卡顿", text: "软件卡顿",
value: 2 value: 2
@ -44,6 +40,10 @@ const FeedBackModel = forwardRef((_props: any, ref: any) => {
text: "操作麻烦", text: "操作麻烦",
value: 7 value: 7
}, },
{
text: "其他,需要手动填写",
value: 1
},
]); ]);
return ( return (
<> <>
@ -81,7 +81,6 @@ const FeedBackModel = forwardRef((_props: any, ref: any) => {
type: item.value type: item.value
}) })
}}> }}>
<span>{item.value}</span>
<span>{item.text}</span> <span>{item.text}</span>
</div> </div>
) )