Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
greenhat616 committed Sep 20, 2023
1 parent 7530b0c commit a9907a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions components/do/review/Card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,15 @@ const doSwiftModify = (
</div>
<div v-if="props.polledRecord" class="review-record">
<span>
您投了 <b>{{ convertPollMethod(props.polledRecord.method) }}</b>
<i>{{ props.polledRecord.point }}</i> 票。
您投了
<u class="underline-offset-3">
<b>{{ convertPollMethod(props.polledRecord.method) }}</b>
</u>
{{ props.polledRecord.point }}
票。
</span>
<span v-if="userStore.user?.role == 'admin'">
当前投票:批准 {{ props.poll.approve }} 票,驳回
当前投票:赞同 {{ props.poll.approve }} 票,驳回
{{ props.poll.reject }} 票,需要更改 {{ props.poll.needModify }} 票。
</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/do/review/CardActionsContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ const doSwiftModify = () => {
:disabled="onSubmitLoading"
@click="onSubmitPoll(PollMethod.Approve)"
>
批准
赞同
</a-button>
<a-button
:loading="onSubmitLoading"
Expand Down

0 comments on commit a9907a5

Please sign in to comment.