205 lines
5.4 KiB
Vue
205 lines
5.4 KiB
Vue
<script setup lang="ts">
|
|
import type {FormInstance} from 'element-plus';
|
|
import {
|
|
ElButton,
|
|
ElDropdown,
|
|
ElDropdownItem,
|
|
ElDropdownMenu,
|
|
ElMessage,
|
|
ElMessageBox,
|
|
ElTable,
|
|
ElTableColumn,
|
|
} from 'element-plus';
|
|
|
|
import {markRaw, onMounted, ref} from 'vue';
|
|
|
|
import {Delete, MoreFilled, Plus} from '@element-plus/icons-vue';
|
|
|
|
import {api} from '#/api/request';
|
|
import HeaderSearch from '#/components/headerSearch/HeaderSearch.vue';
|
|
import ListPageShell from '#/components/page/ListPageShell.vue';
|
|
import PageData from '#/components/page/PageData.vue';
|
|
import {$t} from '#/locales';
|
|
import {router} from '#/router';
|
|
import {useDictStore} from '#/store';
|
|
|
|
import DatacenterTableModal from './DatacenterTableModal.vue';
|
|
|
|
onMounted(() => {
|
|
initDict();
|
|
});
|
|
|
|
const pageDataRef = ref();
|
|
const saveDialog = ref();
|
|
const dictStore = useDictStore();
|
|
const headerButtons = [
|
|
{
|
|
key: 'create',
|
|
text: $t('button.add'),
|
|
icon: markRaw(Plus),
|
|
type: 'primary',
|
|
data: { action: 'create' },
|
|
permission: '/api/v1/datacenterTable/save',
|
|
},
|
|
];
|
|
|
|
function initDict() {
|
|
dictStore.fetchDictionary('dataStatus');
|
|
}
|
|
const handleSearch = (params: string) => {
|
|
pageDataRef.value.setQuery({ tableName: params, isQueryOr: true });
|
|
};
|
|
function reset(formEl?: FormInstance) {
|
|
formEl?.resetFields();
|
|
pageDataRef.value.setQuery({});
|
|
}
|
|
function showDialog(row: any) {
|
|
saveDialog.value.openDialog({ ...row });
|
|
}
|
|
function remove(row: any) {
|
|
ElMessageBox.confirm($t('message.deleteAlert'), $t('message.noticeTitle'), {
|
|
confirmButtonText: $t('message.ok'),
|
|
cancelButtonText: $t('message.cancel'),
|
|
type: 'warning',
|
|
beforeClose: (action, instance, done) => {
|
|
if (action === 'confirm') {
|
|
instance.confirmButtonLoading = true;
|
|
api
|
|
.get(`/api/v1/datacenterTable/removeTable?tableId=${row.id}`)
|
|
.then((res) => {
|
|
instance.confirmButtonLoading = false;
|
|
if (res.errorCode === 0) {
|
|
ElMessage.success(res.message);
|
|
reset();
|
|
done();
|
|
}
|
|
})
|
|
.catch(() => {
|
|
instance.confirmButtonLoading = false;
|
|
});
|
|
} else {
|
|
done();
|
|
}
|
|
},
|
|
}).catch(() => {});
|
|
}
|
|
function toDetailPage(row: any) {
|
|
router.push({
|
|
name: 'TableDetail',
|
|
query: {
|
|
tableId: row.id,
|
|
},
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="datacenter-table-page flex h-full flex-col gap-6 p-6">
|
|
<DatacenterTableModal ref="saveDialog" @reload="reset" />
|
|
<ListPageShell>
|
|
<template #filters>
|
|
<HeaderSearch
|
|
:buttons="headerButtons"
|
|
@search="handleSearch"
|
|
@button-click="showDialog({})"
|
|
/>
|
|
</template>
|
|
<PageData
|
|
ref="pageDataRef"
|
|
page-url="/api/v1/datacenterTable/page"
|
|
:page-size="10"
|
|
>
|
|
<template #default="{ pageList }">
|
|
<ElTable :data="pageList" border>
|
|
<ElTableColumn
|
|
prop="tableName"
|
|
:label="$t('datacenterTable.tableName')"
|
|
>
|
|
<template #default="{ row }">
|
|
{{ row.tableName }}
|
|
</template>
|
|
</ElTableColumn>
|
|
<ElTableColumn
|
|
prop="tableDesc"
|
|
:label="$t('datacenterTable.tableDesc')"
|
|
>
|
|
<template #default="{ row }">
|
|
{{ row.tableDesc }}
|
|
</template>
|
|
</ElTableColumn>
|
|
<ElTableColumn
|
|
prop="created"
|
|
:label="$t('datacenterTable.created')"
|
|
>
|
|
<template #default="{ row }">
|
|
{{ row.created }}
|
|
</template>
|
|
</ElTableColumn>
|
|
<ElTableColumn
|
|
:label="$t('common.handle')"
|
|
width="140"
|
|
align="right"
|
|
>
|
|
<template #default="{ row }">
|
|
<div class="flex items-center gap-3">
|
|
<div class="flex items-center">
|
|
<ElButton link type="primary" @click="toDetailPage(row)">
|
|
{{ $t('button.view') }}
|
|
</ElButton>
|
|
<ElButton link type="primary" @click="showDialog(row)">
|
|
{{ $t('button.edit') }}
|
|
</ElButton>
|
|
</div>
|
|
|
|
<ElDropdown>
|
|
<ElButton link :icon="MoreFilled" />
|
|
|
|
<template #dropdown>
|
|
<ElDropdownMenu>
|
|
<ElDropdownItem @click="remove(row)">
|
|
<ElButton link :icon="Delete" type="danger">
|
|
{{ $t('button.delete') }}
|
|
</ElButton>
|
|
</ElDropdownItem>
|
|
</ElDropdownMenu>
|
|
</template>
|
|
</ElDropdown>
|
|
</div>
|
|
</template>
|
|
</ElTableColumn>
|
|
</ElTable>
|
|
</template>
|
|
</PageData>
|
|
</ListPageShell>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.datacenter-table-page {
|
|
position: relative;
|
|
}
|
|
|
|
.datacenter-table-page::before {
|
|
position: absolute;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
content: '';
|
|
background:
|
|
radial-gradient(
|
|
ellipse 76% 34% at 2% 0%,
|
|
hsl(var(--nav-ambient) / 0.16) 0%,
|
|
transparent 64%
|
|
),
|
|
radial-gradient(
|
|
ellipse 56% 22% at 24% 12%,
|
|
hsl(var(--nav-flow-core) / 0.08) 0%,
|
|
transparent 68%
|
|
);
|
|
}
|
|
|
|
.datacenter-table-page > * {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
</style>
|