table 的去页脚使用方法

  <Table
                rowKey="id"
                checkable
                dataSource={reImportList}
                columns={this.getColumns()}
                selectedRowKeys={selectedRowKeys}
                paginationProps={{ showPagination: false }}
                multiBtnList={[
                  {
                    text: formatMessage({ id: 'pp', defaultMessage: '批量设置新增' }),
                    onClick: this.setBatchAdd,
                  },
                  {
                    text: formatMessage({
                      id: 'batcht',
                      defaultMessage: '批量设置覆盖',
                    }),
                    onClick: this.setBatchCover,
                  },
                  {
                    text: formatMessage({
                      id: 'batchr',
                      defaultMessage: '批量设置忽略',
                    }),
                    onClick: this.setBatchIgnore,
                  },
                  {
                    text: formatMessage({
                      id: 'batch',
                      defaultMessage: '批量删除',
                    }),
                    onClick: this.batchRemove,
                  },
                ]}
              />

  

posted @ 2020-08-06 20:28  lipu1993  阅读(185)  评论(0编辑  收藏  举报