调整:小改动
This commit is contained in:
@@ -1,8 +1,12 @@
|
|||||||
import { useState, useEffect } from 'react';
|
import { useState, useEffect } from 'react';
|
||||||
|
|
||||||
|
import TextArea from 'antd/es/input/TextArea';
|
||||||
import { Card, message, Table, Popconfirm, Button, Modal, Form, Input, DatePicker } from 'antd';
|
import { Card, message, Table, Popconfirm, Button, Modal, Form, Input, DatePicker } from 'antd';
|
||||||
import { addCommentDataAPI, getCommentDataAPI, getCommentListAPI } from '@/api/Comment';
|
|
||||||
|
import { addCommentDataAPI, getCommentListAPI } from '@/api/Comment';
|
||||||
import { delCommentDataAPI } from '@/api/Comment';
|
import { delCommentDataAPI } from '@/api/Comment';
|
||||||
import { ColumnsType } from 'antd/es/table';
|
import { ColumnsType } from 'antd/es/table';
|
||||||
|
|
||||||
import { titleSty } from '@/styles/sty';
|
import { titleSty } from '@/styles/sty';
|
||||||
import Title from '@/components/Title';
|
import Title from '@/components/Title';
|
||||||
import { Comment, FilterForm } from '@/types/app/comment'
|
import { Comment, FilterForm } from '@/types/app/comment'
|
||||||
@@ -10,8 +14,6 @@ import { Comment, FilterForm } from '@/types/app/comment'
|
|||||||
import { useWebStore, useUserStore } from '@/stores'
|
import { useWebStore, useUserStore } from '@/stores'
|
||||||
|
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
import TextArea from 'antd/es/input/TextArea';
|
|
||||||
import { sendCommentEmailAPI } from '@/api/Email';
|
|
||||||
|
|
||||||
const CommentPage = () => {
|
const CommentPage = () => {
|
||||||
const web = useWebStore(state => state.web)
|
const web = useWebStore(state => state.web)
|
||||||
|
|||||||
@@ -202,7 +202,7 @@ const LinkPage = () => {
|
|||||||
<Title value="网站管理" />
|
<Title value="网站管理" />
|
||||||
|
|
||||||
<Card className="WebPage mt-2">
|
<Card className="WebPage mt-2">
|
||||||
<Tabs activeKey={tab} tabPosition="left" onChange={handleTabChange} items={tabItems} />
|
<Tabs activeKey={tab} tabPosition="top" onChange={handleTabChange} items={tabItems} />
|
||||||
</Card>
|
</Card>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user