Update say form values

更新语录表单
This commit is contained in:
奇趣保罗 2024-10-25 00:44:31 +08:00
parent ea1fe98c20
commit 3733461807
1 changed files with 7 additions and 3 deletions

View File

@ -9,7 +9,7 @@ interface FormValue {
content: string; content: string;
author: string; author: string;
origin: string; origin: string;
links: string; link: string;
is_comment: boolean; is_comment: boolean;
} }
@ -55,8 +55,12 @@ function Say() {
<input {...bindInput("author")} placeholder="作者" /> <input {...bindInput("author")} placeholder="作者" />
</div> </div>
<div> <div>
<label htmlFor="links"></label> <label htmlFor="origin"></label>
<input {...bindInput("links")} placeholder="链接" /> <input {...bindInput("origin")} placeholder="来源" />
</div>
<div>
<label htmlFor="link"></label>
<input {...bindInput("link")} placeholder="链接" />
</div> </div>
<div> <div>
<label htmlFor="is_comment"></label> <label htmlFor="is_comment"></label>