样式调整

This commit is contained in:
lxy 2024-06-27 18:29:57 +08:00
parent c8834b6227
commit 93c89f2b46
2 changed files with 4 additions and 4 deletions

View File

@ -19,13 +19,14 @@
padding: 8px;
flex-wrap: wrap;
margin-top: 12px;
gap: 14px;
.sysAccount {
width: 244px;
height: 284px;
border: solid 0.1px silver;
border-radius: 5px;
margin-right: 14px;
// margin-right: 14px;
display: flex;
flex-direction: column;
align-items: stretch;
@ -64,7 +65,7 @@
}
}
}
.span2 {
display: flex;
flex-direction: row;

View File

@ -5,7 +5,7 @@ import { RowWithActions, WebComponentProps } from 'oak-frontend-base';
import { EntityDict } from '../../../oak-app-domain';
import Styles from './web.module.less';
import dayJs from 'dayjs';
import { SysAccountOperType } from '@project/oak-app-domain/SysAccountOper/Schema';
import { SysAccountOperType } from '@project/types/sysAccountOper';
type SAOType = SysAccountOperType | 'all';
@ -31,7 +31,6 @@ export default function Render(props: WebComponentProps<EntityDict, 'accountOper
const { sysAccountOpers, month, type, monthStr, oakLoading, oakLoadingMore, typesOptions, oakPagination } = props.data;
const { t, setType, setMonth, setPageSize, setCurrentPage } = props.methods;
const { pageSize, total, currentPage } = oakPagination || {};
console.log(oakPagination);
return (
<div className={Styles.container}>
<Flex