This commit is contained in:
Li1304553726 2025-04-16 08:50:04 +08:00
parent 1e55baa2f3
commit 05f17e5ffb
4 changed files with 12 additions and 12 deletions

View File

@ -5,7 +5,7 @@ export function Header() {
{/* 主标题区域 */} {/* 主标题区域 */}
<div> <div>
<h1 className="text-3xl font-bold tracking-wider text-white"> <h1 className="text-3xl font-bold tracking-wider text-white">
</h1> </h1>
{/* <p className="mt-2 text-blue-100 text-lg"> {/* <p className="mt-2 text-blue-100 text-lg">
@ -27,7 +27,7 @@ export function Header() {
d="M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4" d="M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4"
/> />
</svg> </svg>
<span></span> <span></span>
</div> </div>
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<svg <svg
@ -42,7 +42,7 @@ export function Header() {
d="M12 6v6m0 0v6m0-6h6m-6 0H6" d="M12 6v6m0 0v6m0-6h6m-6 0H6"
/> />
</svg> </svg>
<span></span> <span></span>
</div> </div>
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<svg <svg
@ -57,7 +57,7 @@ export function Header() {
d="M8 10h.01M12 10h.01M16 10h.01M9 16H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-5l-5 5v-5z" d="M8 10h.01M12 10h.01M16 10h.01M9 16H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-5l-5 5v-5z"
/> />
</svg> </svg>
<span></span> <span></span>
</div> </div>
</div> </div>
</div> </div>

View File

@ -7,7 +7,7 @@ export default function WriteHeader({ term }: { term?: TermDto }) {
{/* 主标题 */} {/* 主标题 */}
<div> <div>
<h1 className="text-3xl font-bold tracking-wider"> <h1 className="text-3xl font-bold tracking-wider">
{term?.name} {term?.name}
</h1> </h1>
{/* <p className="mt-2 text-blue-100 text-lg"> {/* <p className="mt-2 text-blue-100 text-lg">

View File

@ -28,12 +28,12 @@ export function Footer() {
<div className="text-center space-y-2"> <div className="text-center space-y-2">
<div className="flex items-center justify-center space-x-2"> <div className="flex items-center justify-center space-x-2">
<PhoneOutlined className="text-gray-400" /> <PhoneOutlined className="text-gray-400" />
<span className="text-white text-xs">628118</span> <span className="text-white text-xs">628038</span>
</div> </div>
<div className="flex items-center justify-center space-x-2"> <div className="flex items-center justify-center space-x-2">
<MailOutlined className="text-gray-400" /> <MailOutlined className="text-gray-400" />
<span className="text-white text-xs"> <span className="text-white text-xs">
gcsjs6@tx3l.nb.kj wsd@tx3l.nb.kj
</span> </span>
</div> </div>
</div> </div>

View File

@ -71,14 +71,14 @@ export function LetterBasicForm() {
<StaffSelect <StaffSelect
multiple multiple
limitedIds={enabledStaffIds?.filter(Boolean)} limitedIds={enabledStaffIds?.filter(Boolean)}
placeholder="选择收信人员" placeholder="选择咨询人员"
/> />
</Form.Item> </Form.Item>
<Form.Item <Form.Item
label="分类" label="分类"
name={"term"} name={"term"}
rules={[{ required: true, message: "请选择信件分类" }]}> rules={[{ required: true, message: "请选择分类" }]}>
<TermSelect placeholder="选择信件分类" /> <TermSelect placeholder="选择分类" />
</Form.Item> </Form.Item>
</div> </div>
<div className="flex gap-2"> <div className="flex gap-2">
@ -91,7 +91,7 @@ export function LetterBasicForm() {
style={{ width: "100%" }} style={{ width: "100%" }}
maxLength={20} maxLength={20}
showCount showCount
placeholder="请输入信件标题" placeholder="请输入标题"
/> />
</Form.Item> </Form.Item>
<Form.Item name="isPublic" initialValue={true}> <Form.Item name="isPublic" initialValue={true}>
@ -183,7 +183,7 @@ export function LetterBasicForm() {
style={{ style={{
width: 150, width: 150,
}}> }}>
</Button> </Button>
</div> </div>
</div> </div>