add
This commit is contained in:
parent
1e55baa2f3
commit
05f17e5ffb
|
@ -5,7 +5,7 @@ export function Header() {
|
|||
{/* 主标题区域 */}
|
||||
<div>
|
||||
<h1 className="text-3xl font-bold tracking-wider text-white">
|
||||
我的信件
|
||||
我的悄悄话
|
||||
</h1>
|
||||
{/* <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"
|
||||
/>
|
||||
</svg>
|
||||
<span>随时查看收到的信件</span>
|
||||
<span>随时查看</span>
|
||||
</div>
|
||||
<div className="flex items-center gap-2">
|
||||
<svg
|
||||
|
@ -42,7 +42,7 @@ export function Header() {
|
|||
d="M12 6v6m0 0v6m0-6h6m-6 0H6"
|
||||
/>
|
||||
</svg>
|
||||
<span>快速处理信件内容</span>
|
||||
<span>快速处理</span>
|
||||
</div>
|
||||
<div className="flex items-center gap-2">
|
||||
<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"
|
||||
/>
|
||||
</svg>
|
||||
<span>高效反馈处理结果</span>
|
||||
<span>高效反馈</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -7,7 +7,7 @@ export default function WriteHeader({ term }: { term?: TermDto }) {
|
|||
{/* 主标题 */}
|
||||
<div>
|
||||
<h1 className="text-3xl font-bold tracking-wider">
|
||||
{term?.name}信件投递入口
|
||||
{term?.name}心理咨询入口
|
||||
</h1>
|
||||
{/* <p className="mt-2 text-blue-100 text-lg">
|
||||
保护您隐私的信件传输平台
|
||||
|
|
|
@ -28,12 +28,12 @@ export function Footer() {
|
|||
<div className="text-center space-y-2">
|
||||
<div className="flex items-center justify-center space-x-2">
|
||||
<PhoneOutlined className="text-gray-400" />
|
||||
<span className="text-white text-xs">628118</span>
|
||||
<span className="text-white text-xs">628038</span>
|
||||
</div>
|
||||
<div className="flex items-center justify-center space-x-2">
|
||||
<MailOutlined className="text-gray-400" />
|
||||
<span className="text-white text-xs">
|
||||
gcsjs6@tx3l.nb.kj
|
||||
wsd@tx3l.nb.kj
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -71,14 +71,14 @@ export function LetterBasicForm() {
|
|||
<StaffSelect
|
||||
multiple
|
||||
limitedIds={enabledStaffIds?.filter(Boolean)}
|
||||
placeholder="选择收信人员"
|
||||
placeholder="选择咨询人员"
|
||||
/>
|
||||
</Form.Item>
|
||||
<Form.Item
|
||||
label="分类"
|
||||
name={"term"}
|
||||
rules={[{ required: true, message: "请选择信件分类" }]}>
|
||||
<TermSelect placeholder="选择信件分类" />
|
||||
rules={[{ required: true, message: "请选择分类" }]}>
|
||||
<TermSelect placeholder="选择分类" />
|
||||
</Form.Item>
|
||||
</div>
|
||||
<div className="flex gap-2">
|
||||
|
@ -91,7 +91,7 @@ export function LetterBasicForm() {
|
|||
style={{ width: "100%" }}
|
||||
maxLength={20}
|
||||
showCount
|
||||
placeholder="请输入信件标题"
|
||||
placeholder="请输入标题"
|
||||
/>
|
||||
</Form.Item>
|
||||
<Form.Item name="isPublic" initialValue={true}>
|
||||
|
@ -183,7 +183,7 @@ export function LetterBasicForm() {
|
|||
style={{
|
||||
width: 150,
|
||||
}}>
|
||||
发送信件
|
||||
咨询
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue