yangjie #47

Merged
yangqiang merged 49 commits from yangjie into master 2025-01-24 13:43:09 +08:00
1 changed files with 4 additions and 5 deletions
Showing only changes of commit 956f045fad - Show all commits

View File

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