容器实例界面优化

This commit is contained in:
qiuyuan 2025-11-26 10:41:59 +08:00
parent 8f9a63eac3
commit 82bc25b6ec
2 changed files with 1254 additions and 1 deletions

View File

@ -119,6 +119,9 @@ import {
InboxOutlined
} from '@ant-design/icons-vue';
import { useRouter } from 'vue-router'
export default defineComponent({
name: 'InstanceList',
components: {
@ -137,7 +140,9 @@ export default defineComponent({
AppstoreOutlined,
InboxOutlined,
},
setup() {
const router = useRouter()
const loading = ref(false);
const currentPage = ref(1);
const pageSize = ref(10);
@ -226,7 +231,7 @@ export default defineComponent({
fetchInstances();
const handleRent = () => {
console.log('租用新实例');
router.push('/layout/admin/instanceCreate');
};
const handleRenew = () => {

File diff suppressed because it is too large Load Diff