fix(notice): 修复通知列表页面配置问题
- 移除默认的 pageSize 参数设置 - 添加 useStorageQueryCriteria 配置为 false - 设置表格 options 为 false 禁用操作栏 - 设置 disabledResizer 为 true 禁用列宽调整功能master
parent
9b82528cf4
commit
84bbdd8595
|
|
@ -161,8 +161,8 @@ function ViewModalComponent(props) {
|
|||
form,
|
||||
params: {
|
||||
noticeId: props.currentId,
|
||||
pageSize: 10,
|
||||
},
|
||||
useStorageQueryCriteria: false,
|
||||
});
|
||||
|
||||
const onCancel = () => {
|
||||
|
|
@ -195,6 +195,8 @@ function ViewModalComponent(props) {
|
|||
/>
|
||||
<Table
|
||||
rowKey="userId"
|
||||
options={false}
|
||||
disabledResizer={true}
|
||||
columns={[
|
||||
{ dataIndex: "corpinfoName", title: "企业名称" },
|
||||
{ dataIndex: "userName", title: "姓名" },
|
||||
|
|
|
|||
Loading…
Reference in New Issue