feat: 配置管理>备份管理

This commit is contained in:
TsMask
2023-09-18 15:09:14 +08:00
parent a2980686c0
commit 60978d5261
3 changed files with 431 additions and 2 deletions

View File

@@ -134,7 +134,7 @@ let tableColumns: ColumnsType = [
},
},
{
title: '操作',
title: t("common.operate"),
key: 'id',
align: 'center',
},
@@ -158,7 +158,7 @@ let tablePagination = reactive({
showSizeChanger: true,
/**数据总数 */
total: 0,
showTotal: (total: number) => `总共 ${total}`,
showTotal: (total: number) => t('common.tablePaginationTotal', { total }),
onChange: (page: number, pageSize: number) => {
tablePagination.current = page;
tablePagination.pageSize = pageSize;