perf: hide table full screen button by default
This commit is contained in:
parent
c41fa75265
commit
500900abe1
|
|
@ -7,7 +7,7 @@ on:
|
||||||
- cron: '0 15 * * *'
|
- cron: '0 15 * * *'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
push-to-ftp:
|
schedule-push-to-ftp:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
- 登录界面动画优化
|
- 登录界面动画优化
|
||||||
- 修复 github 仓库体积过大问题.
|
- 修复 github 仓库体积过大问题.
|
||||||
|
- 默认隐藏表格全屏按钮
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@
|
||||||
redo: true,
|
redo: true,
|
||||||
size: true,
|
size: true,
|
||||||
setting: true,
|
setting: true,
|
||||||
fullScreen: true,
|
fullScreen: false,
|
||||||
...props.setting,
|
...props.setting,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -74,7 +74,6 @@ export const basicProps = {
|
||||||
},
|
},
|
||||||
// 立即请求接口
|
// 立即请求接口
|
||||||
immediate: propTypes.bool.def(true),
|
immediate: propTypes.bool.def(true),
|
||||||
|
|
||||||
emptyDataIsShowTable: propTypes.bool.def(true),
|
emptyDataIsShowTable: propTypes.bool.def(true),
|
||||||
// 额外的请求参数
|
// 额外的请求参数
|
||||||
searchInfo: {
|
searchInfo: {
|
||||||
|
|
@ -130,12 +129,10 @@ export const basicProps = {
|
||||||
type: [Object, Boolean] as PropType<PaginationProps | boolean>,
|
type: [Object, Boolean] as PropType<PaginationProps | boolean>,
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
|
|
||||||
loading: propTypes.bool,
|
loading: propTypes.bool,
|
||||||
rowClassName: {
|
rowClassName: {
|
||||||
type: Function as PropType<(record: TableCustomRecord<any>, index: number) => string>,
|
type: Function as PropType<(record: TableCustomRecord<any>, index: number) => string>,
|
||||||
},
|
},
|
||||||
|
|
||||||
scroll: {
|
scroll: {
|
||||||
type: Object as PropType<{ x: number | true; y: number }>,
|
type: Object as PropType<{ x: number | true; y: number }>,
|
||||||
default: null,
|
default: null,
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@
|
||||||
span: 8,
|
span: 8,
|
||||||
},
|
},
|
||||||
componentProps: {
|
componentProps: {
|
||||||
|
mode: 'multiple',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
label: '选项1',
|
label: '选项1',
|
||||||
|
|
@ -71,6 +72,7 @@
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '请输入aa',
|
message: '请输入aa',
|
||||||
|
type: 'array',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue