기타 수정

This commit is contained in:
2025-04-02 18:02:36 +09:00
parent 2c693b2503
commit 9221a06a8e
2 changed files with 11 additions and 8 deletions

View File

@@ -17,6 +17,7 @@ import { useRecoilValue } from 'recoil';
import { authList } from '../../store/authList';
import { convertKTC } from '../../utils';
import { TableSkeleton } from '../Skeleton/TableSkeleton';
import { opPickupType, opReadType, opYNType } from '../../assets/data/options';
const UserMailInfo = ({ userInfo }) => {
const token = sessionStorage.getItem('token');
@@ -52,6 +53,7 @@ const UserMailInfo = ({ userInfo }) => {
}, [authInfo]);
const fetchData = async option => {
setLoading(true);
await UserMailView(token, userInfo.guid, option).then(data =>{
setDataList(data);
setLoading(false);
@@ -211,10 +213,10 @@ const UserMailInfo = ({ userInfo }) => {
{mail.title}
</MailLink>
</td>
<td>{mail.status === true ? '확인' : '미확인'}</td>
<td>{mail.item_list.length > 0 ? 'Y' : 'N'}</td>
<td>{mail.is_get_item === true ? '수령함' : '미수령함'}</td>
<td>{mail.is_system_mail === true ? 'Y' : 'N'}</td>
<td>{opReadType.find(type => type.value === mail.status).name}</td>
<td>{opYNType.find(type => type.value === (mail.item_list.length > 0)).name}</td>
<td>{opPickupType.find(type => type.value === mail.is_get_item).name}</td>
<td>{opYNType.find(type => type.value === mail.is_system_mail).name}</td>
{/* <td>
{mail.is_get_item_dt && String(new Date(new Date(mail.is_get_item_dt).setHours(new Date(mail.is_get_item_dt).getHours() + 9)).toLocaleString())}
</td> */}
@@ -365,6 +367,7 @@ const UserTableWrapper = styled.div`
const MailLink = styled.div`
color: #61a2d0;
text-decoration: underline;
cursor: pointer;
`;
const SelectWrapper = styled.div`