Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/components/task-list/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'task-list-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('task-list-page-size')) || 10,
pageSize: Number(localStorage.getItem('task-list-page-size')) || 20,
total: 0,
small: true,
});
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/ai/mcp/server/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const items = ref<AI.McpServer[]>([]);
const paginationConfig = reactive({
cacheSizeKey: 'mcp-server-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('mcp-server-page-size')) || 10,
pageSize: Number(localStorage.getItem('mcp-server-page-size')) || 20,
total: 0,
});
const mobile = computed(() => {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/ai/model/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'model-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('page-size')) || 10,
pageSize: Number(localStorage.getItem('page-size')) || 20,
total: 0,
});
const searchName = ref();
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/container/compose/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const loading = ref(false);
const paginationConfig = reactive({
cacheSizeKey: 'container-compose-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('container-compose-page-size')) || 10,
pageSize: Number(localStorage.getItem('container-compose-page-size')) || 20,
total: 0,
});
const searchName = ref();
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/container/container/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ const selects = ref<any>([]);
const paginationConfig = reactive({
cacheSizeKey: 'container-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('container-page-size')) || 10,
pageSize: Number(localStorage.getItem('container-page-size')) || 20,
total: 0,
state: 'all',
orderBy: 'createdAt',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/container/image/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const repos = ref();
const paginationConfig = reactive({
cacheSizeKey: 'container-image-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('container-image-page-size')) || 10,
pageSize: Number(localStorage.getItem('container-image-page-size')) || 20,
total: 0,
name: '',
orderBy: 'createdAt',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/container/network/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const selects = ref<any>([]);
const paginationConfig = reactive({
cacheSizeKey: 'container-network-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('container-network-page-size')) || 10,
pageSize: Number(localStorage.getItem('container-network-page-size')) || 20,
total: 0,
});
const searchName = ref();
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/container/repo/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const selects = ref<any>([]);
const paginationConfig = reactive({
cacheSizeKey: 'image-repo-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('image-repo-page-size')) || 10,
pageSize: Number(localStorage.getItem('image-repo-page-size')) || 20,
total: 0,
});
const searchName = ref();
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/container/template/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const selects = ref<any>([]);
const paginationConfig = reactive({
cacheSizeKey: 'compose-template-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('compose-template-page-size')) || 10,
pageSize: Number(localStorage.getItem('compose-template-page-size')) || 20,
total: 0,
});
const searchName = ref();
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/container/volume/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ const selects = ref<any>([]);
const paginationConfig = reactive({
cacheSizeKey: 'container-volume-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('container-volume-page-size')) || 10,
pageSize: Number(localStorage.getItem('container-volume-page-size')) || 20,
total: 0,
});
const searchName = ref();
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/cronjob/cronjob/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'cronjob-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('cronjob-page-size')) || 10,
pageSize: Number(localStorage.getItem('cronjob-page-size')) || 20,
total: 0,
orderBy: 'createdAt',
order: 'null',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/cronjob/library/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'script-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('script-page-size')) || 10,
pageSize: Number(localStorage.getItem('script-page-size')) || 20,
total: 0,
});
const searchInfo = ref<string>('');
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/database/mysql/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'mysql-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('mysql-page-size')) || 10,
pageSize: Number(localStorage.getItem('mysql-page-size')) || 20,
total: 0,
orderBy: 'createdAt',
order: 'null',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/database/mysql/remote/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'mysql-remote-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('mysql-remote-page-size')) || 10,
pageSize: Number(localStorage.getItem('mysql-remote-page-size')) || 20,
total: 0,
orderBy: 'createdAt',
order: 'null',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/database/postgresql/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'postgresql-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('postgresql-page-size')) || 10,
pageSize: Number(localStorage.getItem('postgresql-page-size')) || 20,
total: 0,
orderBy: 'createdAt',
order: 'null',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/database/postgresql/remote/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'postgresql-remote-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('postgresql-remote-page-size')) || 10,
pageSize: Number(localStorage.getItem('postgresql-remote-page-size')) || 20,
total: 0,
orderBy: 'createdAt',
order: 'null',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/database/redis/remote/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'redis-remote-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('redis-remote-page-size')) || 10,
pageSize: Number(localStorage.getItem('redis-remote-page-size')) || 20,
total: 0,
orderBy: 'createdAt',
order: 'null',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const confirmDialogRef = ref();
const paginationConfig = reactive({
cacheSizeKey: 'redis-backup-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('redis-backup-page-size')) || 10,
pageSize: Number(localStorage.getItem('redis-backup-page-size')) || 20,
total: 0,
});

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/host/firewall/forward/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'firewall-forward-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('firewall-forward-page-size')) || 10,
pageSize: Number(localStorage.getItem('firewall-forward-page-size')) || 20,
total: 0,
});

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/host/firewall/ip/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'firewall-ip-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('firewall-ip-page-size')) || 10,
pageSize: Number(localStorage.getItem('firewall-ip-page-size')) || 20,
total: 0,
});

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/host/firewall/port/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'firewall-port-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('firewall-port-page-size')) || 10,
pageSize: Number(localStorage.getItem('firewall-port-page-size')) || 20,
total: 0,
});

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/host/ssh/log/log.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'ssh-log-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('ssh-log-page-size')) || 10,
pageSize: Number(localStorage.getItem('ssh-log-page-size')) || 20,
total: 0,
});

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/host/ssh/ssh/certification/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ const selects = ref<any>([]);
const paginationConfig = reactive({
cacheSizeKey: 'login-log-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('login-log-page-size')) || 10,
pageSize: Number(localStorage.getItem('login-log-page-size')) || 20,
total: 0,
small: true,
});
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/log/login/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const confirmDialogRef = ref();
const paginationConfig = reactive({
cacheSizeKey: 'login-log-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('login-log-page-size')) || 10,
pageSize: Number(localStorage.getItem('login-log-page-size')) || 20,
total: 0,
});
const searchIP = ref<string>('');
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/log/operation/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const confirmDialogRef = ref();
const paginationConfig = reactive({
cacheSizeKey: 'operation-log-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('operation-log-page-size')) || 10,
pageSize: Number(localStorage.getItem('operation-log-page-size')) || 20,
total: 0,
});
const searchName = ref<string>('');
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/log/task/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'task-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('task-page-size')) || 10,
pageSize: Number(localStorage.getItem('task-page-size')) || 20,
total: 0,
});
const taskLogRef = ref();
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/setting/alert/dash/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const req = reactive({
const paginationConfig = reactive({
cacheSizeKey: 'alert-list-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('alert-list-page-size')) || 10,
pageSize: Number(localStorage.getItem('alert-list-page-size')) || 20,
total: 0,
orderBy: 'created_at',
order: 'null',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/setting/alert/log/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const resourceTypes = [
const paginationConfig = reactive({
cacheSizeKey: 'alert-log-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('alert-log-page-size')) || 10,
pageSize: Number(localStorage.getItem('alert-log-page-size')) || 20,
total: 0,
});
const req = reactive({
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/setting/backup-account/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'backup-account-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('backup-account-size')) || 10,
pageSize: Number(localStorage.getItem('backup-account-size')) || 20,
total: 0,
type: '',
name: '',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/setting/license/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'license-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('license-page-size')) || 10,
pageSize: Number(localStorage.getItem('license-page-size')) || 20,
total: 0,
type: '',
name: '',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/setting/snapshot/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ const selects = ref<any>([]);
const paginationConfig = reactive({
cacheSizeKey: 'snapshot-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('snapshot-page-size')) || 10,
pageSize: Number(localStorage.getItem('snapshot-page-size')) || 20,
total: 0,
orderBy: 'createdAt',
order: 'null',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/terminal/command/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const groupList = ref();
const paginationConfig = reactive({
cacheSizeKey: 'terminal-command-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('terminal-command-page-size')) || 10,
pageSize: Number(localStorage.getItem('terminal-command-page-size')) || 20,
total: 0,
orderBy: 'name',
order: 'ascending',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/terminal/host/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const selects = ref<any>([]);
const paginationConfig = reactive({
cacheSizeKey: 'terminal-host-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('terminal-host-page-size')) || 10,
pageSize: Number(localStorage.getItem('terminal-host-page-size')) || 20,
total: 0,
});
const info = ref();
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/toolbox/clam/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'clam-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('clam-page-size')) || 10,
pageSize: Number(localStorage.getItem('clam-page-size')) || 20,
total: 0,
orderBy: 'createdAt',
order: 'null',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/toolbox/ftp/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ const data = ref();
const paginationConfig = reactive({
cacheSizeKey: 'ftp-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('ftp-page-size')) || 10,
pageSize: Number(localStorage.getItem('ftp-page-size')) || 20,
total: 0,
orderBy: 'createdAt',
order: 'null',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/toolbox/ftp/log/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import i18n from '@/lang';
const paginationConfig = reactive({
cacheSizeKey: 'ftp-log-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('ftp-log-page-size')) || 10,
pageSize: Number(localStorage.getItem('ftp-log-page-size')) || 20,
total: 0,
user: '',
operation: '',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/website/runtime/dotnet/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const mobile = computed(() => {
const paginationConfig = reactive({
cacheSizeKey: 'runtime-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('runtime-page-size')) || 10,
pageSize: Number(localStorage.getItem('runtime-page-size')) || 20,
total: 0,
});
const req = reactive<Runtime.RuntimeReq>({
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/website/runtime/go/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const isExist = ref(false);
const paginationConfig = reactive({
cacheSizeKey: 'runtime-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('runtime-page-size')) || 10,
pageSize: Number(localStorage.getItem('runtime-page-size')) || 20,
total: 0,
});
const req = reactive<Runtime.RuntimeReq>({
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/website/runtime/java/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const isExist = ref(false);
const paginationConfig = reactive({
cacheSizeKey: 'runtime-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('runtime-page-size')) || 10,
pageSize: Number(localStorage.getItem('runtime-page-size')) || 20,
total: 0,
});
const req = reactive<Runtime.RuntimeReq>({
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/website/runtime/node/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const isExist = ref(false);
const paginationConfig = reactive({
cacheSizeKey: 'runtime-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('runtime-page-size')) || 10,
pageSize: Number(localStorage.getItem('runtime-page-size')) || 20,
total: 0,
});
const req = reactive<Runtime.RuntimeReq>({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const opRef = ref();
const paginationConfig = reactive({
cacheSizeKey: 'website-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('website-page-size')) || 10,
pageSize: Number(localStorage.getItem('website-page-size')) || 20,
total: 0,
});

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/website/runtime/php/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ const taskLogRef = ref();
const paginationConfig = reactive({
cacheSizeKey: 'runtime-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('runtime-page-size')) || 10,
pageSize: Number(localStorage.getItem('runtime-page-size')) || 20,
total: 0,
});
let req = reactive<Runtime.RuntimeReq>({
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/website/runtime/python/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const isExist = ref(false);
const paginationConfig = reactive({
cacheSizeKey: 'runtime-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('runtime-page-size')) || 10,
pageSize: Number(localStorage.getItem('runtime-page-size')) || 20,
total: 0,
});
const req = reactive<Runtime.RuntimeReq>({
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/website/ssl/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ const globalStore = GlobalStore();
const paginationConfig = reactive({
cacheSizeKey: 'ssl-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('ssl-page-size')) || 10,
pageSize: Number(localStorage.getItem('ssl-page-size')) || 20,
total: 0,
});
const acmeAccountRef = ref();
Expand Down
Loading
Loading