调整:小改动

This commit is contained in:
Liu 宇阳
2024-11-11 12:03:48 +08:00
parent e9a9ef4763
commit e009b8a346
2 changed files with 6 additions and 4 deletions

View File

@@ -1,8 +1,12 @@
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 { addCommentDataAPI, getCommentDataAPI, getCommentListAPI } from '@/api/Comment';
import { addCommentDataAPI, getCommentListAPI } from '@/api/Comment';
import { delCommentDataAPI } from '@/api/Comment';
import { ColumnsType } from 'antd/es/table';
import { titleSty } from '@/styles/sty';
import Title from '@/components/Title';
import { Comment, FilterForm } from '@/types/app/comment'
@@ -10,8 +14,6 @@ import { Comment, FilterForm } from '@/types/app/comment'
import { useWebStore, useUserStore } from '@/stores'
import dayjs from 'dayjs';
import TextArea from 'antd/es/input/TextArea';
import { sendCommentEmailAPI } from '@/api/Email';
const CommentPage = () => {
const web = useWebStore(state => state.web)