Skip to content

Commit

Permalink
feat(evaluate) : myComment样式修改
Browse files Browse the repository at this point in the history
  • Loading branch information
eleliauk committed Dec 17, 2024
1 parent 002fb7d commit e4bbdf2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/pages/evaluate/evaluate.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

.view .myComment {
width: 659.42rpx;
height: 543.48rpx;
height: 30vh;
background-color: #f9f9f2;
border-radius: 43.48rpx 43.48rpx 43.48rpx 43.48rpx;
margin-left: 45.29rpx;
Expand Down
20 changes: 9 additions & 11 deletions src/pages/evaluate/evaluate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,17 +195,6 @@ export default function evaluate() {
})}
</View>
</View>
<View className="p">
<Text>是否匿名:</Text>
<Radio
className="myradio"
checked={isAnonymous}
onClick={() => setIsAnonymous(!isAnonymous)}
color="#3399ff"
>
匿名发布
</Radio>
</View>
<Textarea
maxlength={450}
onInput={countContent}
Expand All @@ -214,6 +203,15 @@ export default function evaluate() {
className="myComment"
></Textarea>
<Text className="zsxz">字数限制{textLength}/450</Text>
<View className="p">
<Text>匿名:</Text>
<Radio
className="myradio"
checked={isAnonymous}
onClick={() => setIsAnonymous(!isAnonymous)}
color="#3399ff"
></Radio>
</View>
<Button onClick={postEvaluation}>发布</Button>
</Form>
);
Expand Down

0 comments on commit e4bbdf2

Please sign in to comment.