Commit 500900abe16d3e27e1c9e0446a13386c6129d449
1 parent
c41fa752
perf: hide table full screen button by default
Showing
5 changed files
with
5 additions
and
5 deletions
.github/workflows/ftp-schedule.yml
CHANGELOG.zh_CN.md
src/components/Table/src/components/settings/index.vue
src/components/Table/src/props.ts
... | ... | @@ -74,7 +74,6 @@ export const basicProps = { |
74 | 74 | }, |
75 | 75 | // 立即请求接口 |
76 | 76 | immediate: propTypes.bool.def(true), |
77 | - | |
78 | 77 | emptyDataIsShowTable: propTypes.bool.def(true), |
79 | 78 | // 额外的请求参数 |
80 | 79 | searchInfo: { |
... | ... | @@ -130,12 +129,10 @@ export const basicProps = { |
130 | 129 | type: [Object, Boolean] as PropType<PaginationProps | boolean>, |
131 | 130 | default: null, |
132 | 131 | }, |
133 | - | |
134 | 132 | loading: propTypes.bool, |
135 | 133 | rowClassName: { |
136 | 134 | type: Function as PropType<(record: TableCustomRecord<any>, index: number) => string>, |
137 | 135 | }, |
138 | - | |
139 | 136 | scroll: { |
140 | 137 | type: Object as PropType<{ x: number | true; y: number }>, |
141 | 138 | default: null, | ... | ... |
src/views/demo/form/RuleForm.vue