Skip to content

Commit

Permalink
fix(admin, searchModal): missing creator field
Browse files Browse the repository at this point in the history
  • Loading branch information
greenhat616 committed Oct 3, 2023
1 parent 1e6b587 commit 4171778
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions components/admin/sentence/SearchModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export interface State {
type?: HitokotoType
from?: string
fromWho?: string
creator?: string
start?: string
end?: string
}
Expand Down Expand Up @@ -104,6 +105,12 @@ const handleCancel = () => {
<a-form-item name="from" label="作者">
<a-input v-model:value="formState.fromWho" placeholder="作者" />
</a-form-item>
<a-form-item name="from" label="提交者">
<a-input
v-model:value="formState.creator"
placeholder="提交者(UID 或者名字)"
/>
</a-form-item>
<a-form-item name="range" label="时间范围">
<div class="flex gap-3">
<a-date-picker
Expand Down

0 comments on commit 4171778

Please sign in to comment.