UNIVPLMDataIntegration/Web/src/views/system/tenant/index.vue

325 lines
13 KiB
Vue
Raw Normal View History

2024-06-15 13:02:35 +08:00
<template>
2024-07-16 16:07:57 +08:00
<div class="sys-tenant-container">
2024-07-01 11:26:10 +08:00
<el-card shadow="hover" :body-style="{ padding: '5px 5px 0 5px', display: 'flex', width: '100%', height: '100%', alignItems: 'start' }">
<el-form :model="state.queryParams" ref="queryForm" :show-message="false" :inlineMessage="true" label-width="auto" style="flex: 1 1 0%">
2024-07-01 11:26:10 +08:00
<el-row :gutter="10">
<el-col class="mb5" :xs="24" :sm="12" :md="8" :lg="6" :xl="6">
<el-form-item label="租户名称" prop="name">
2024-07-10 23:40:32 +08:00
<el-input v-model="state.queryParams.name" placeholder="租户名称" clearable @keyup.enter.native="handleQuery" />
2024-07-01 11:26:10 +08:00
</el-form-item>
</el-col>
<el-col class="mb5" :xs="24" :sm="12" :md="8" :lg="6" :xl="6">
<el-form-item label="联系电话" prop="code">
2024-07-10 23:40:32 +08:00
<el-input v-model="state.queryParams.phone" placeholder="联系电话" clearable @keyup.enter.native="handleQuery" />
2024-07-01 11:26:10 +08:00
</el-form-item>
</el-col>
</el-row>
</el-form>
<el-divider style="height: calc(100% - 5px); margin: 0 10px" direction="vertical" />
<el-row>
<el-col>
2024-06-15 13:02:35 +08:00
<el-button-group>
2024-07-22 02:54:41 +08:00
<el-button type="primary" icon="ele-Search" @click="handleQuery" v-auth="'sysTenant/page'" :loading="options.loading"> 查询 </el-button>
2024-07-01 11:26:10 +08:00
<el-button icon="ele-Refresh" @click="resetQuery" :loading="options.loading"> 重置 </el-button>
2024-06-15 13:02:35 +08:00
</el-button-group>
2024-07-01 11:26:10 +08:00
</el-col>
</el-row>
2024-06-15 13:02:35 +08:00
</el-card>
<el-card class="full-table" shadow="hover" style="margin-top: 5px">
2024-07-10 23:40:32 +08:00
<vxe-grid ref="xGrid" class="xGrid-style" v-bind="options" v-on="gridEvents">
2024-07-01 11:26:10 +08:00
<template #toolbar_buttons>
2024-07-22 02:54:41 +08:00
<el-button icon="ele-Plus" type="primary" @click="handleAdd" v-auth="'sysTenant/add'"> 新增 </el-button>
2024-07-01 11:26:10 +08:00
<el-button type="danger" icon="ele-Refresh" @click="syncTenantDb" plain> 同步所有租户数据库 </el-button>
</template>
<template #toolbar_tools> </template>
<template #empty>
<el-empty :image-size="200" />
</template>
<template #row_tenantType="{ row }">
<el-tag v-if="row.tenantType === 0" type="success">ID隔离</el-tag>
<el-tag v-else type="danger">库隔离</el-tag>
</template>
<template #row_status="scope">
<el-switch v-model="scope.row.status" :active-value="1" :inactive-value="2" size="small" @change="changeStatus(scope)" :disabled="scope.row.id == 1300000000001" />
</template>
<template #row_dbType="{ row }">
<el-tag v-if="row.dbType === 0"> MySql </el-tag>
<el-tag v-else-if="row.dbType === 1"> SqlServer </el-tag>
<el-tag v-else-if="row.dbType === 2"> Sqlite </el-tag>
<el-tag v-else-if="row.dbType === 3"> Oracle </el-tag>
<el-tag v-else-if="row.dbType === 4"> PostgreSQL </el-tag>
<el-tag v-else-if="row.dbType === 5"> Dm </el-tag>
<el-tag v-else-if="row.dbType === 6"> Kdbndp </el-tag>
<el-tag v-else-if="row.dbType === 7"> Oscar </el-tag>
<el-tag v-else-if="row.dbType === 8"> MySqlConnector </el-tag>
<el-tag v-else-if="row.dbType === 9"> Access </el-tag>
<el-tag v-else-if="row.dbType === 10"> OpenGauss </el-tag>
<el-tag v-else-if="row.dbType === 11"> QuestDB </el-tag>
<el-tag v-else-if="row.dbType === 12"> HG </el-tag>
<el-tag v-else-if="row.dbType === 13"> ClickHouse </el-tag>
<el-tag v-else-if="row.dbType === 14"> GBase </el-tag>
<el-tag v-else-if="row.dbType === 15"> Odbc </el-tag>
<el-tag v-else-if="row.dbType === 16"> OceanBaseForOracle </el-tag>
<el-tag v-else-if="row.dbType === 17"> TDengine </el-tag>
<el-tag v-else-if="row.dbType === 18"> GaussDB </el-tag>
<el-tag v-else-if="row.dbType === 19"> OceanBase </el-tag>
<el-tag v-else-if="row.dbType === 20"> Tidb </el-tag>
<el-tag v-else-if="row.dbType === 21"> Vastbase </el-tag>
<el-tag v-else-if="row.dbType === 22"> PolarDB </el-tag>
<el-tag v-else-if="row.dbType === 23"> Doris </el-tag>
<el-tag v-else-if="row.dbType === 900"> Custom </el-tag>
</template>
<template #row_record="{ row }">
<ModifyRecord :data="row" />
</template>
<template #row_buttons="{ row }">
<el-tooltip content="编辑" placement="top">
2024-07-22 02:54:41 +08:00
<el-button icon="ele-Edit" size="small" text type="primary" @click="handleEdit(row)" v-auth="'sysTenant/update'" />
2024-07-01 11:26:10 +08:00
</el-tooltip>
<el-tooltip content="删除" placement="top">
<el-button icon="ele-Delete" text type="danger" @click="handleDelete(row)" v-auth="'sysTenant/delete'" :disabled="row.id == 1300000000001"> </el-button>
2024-07-01 11:26:10 +08:00
</el-tooltip>
<el-tooltip content="重置密码" placement="top">
<el-button icon="ele-RefreshLeft" text type="danger" @click="resetTenantPwd(row)" v-auth="'sysTenant/resetPwd'"> </el-button>
2024-07-01 11:26:10 +08:00
</el-tooltip>
<el-button icon="ele-Coin" size="small" text type="danger" @click="createTenantData(row)" :v-auth="'sysTenant/createDb'" v-if="row.tenantType === 0"> 创建租户数据 </el-button>
<el-button icon="ele-Coin" size="small" text type="danger" @click="createTenantDb(row)" :v-auth="'sysTenant/createDb'" v-else> 创建租户库表 </el-button>
<el-button icon="ele-Menu" size="small" text type="primary" @click="openGrantMenu(row)" v-auth="'sysTenant/grantMenu'"> 授权菜单 </el-button>
2024-08-14 13:58:16 +08:00
<el-button icon="ele-Link" size="small" text type="primary" @click="openGrantApi(row)"> 接口黑名单 </el-button>
2024-07-01 11:26:10 +08:00
</template>
</vxe-grid>
2024-06-15 13:02:35 +08:00
</el-card>
2024-07-01 11:26:10 +08:00
<EditTenant ref="editTenantRef" :title="state.title" @handleQuery="handleQuery" />
2024-06-15 13:02:35 +08:00
<GrantMenu ref="grantMenuRef" />
<GrantApi ref="grantApiRef" />
2024-06-15 13:02:35 +08:00
</div>
</template>
<script lang="ts" setup name="sysTenant">
import { onMounted, reactive, ref } from 'vue';
2024-07-01 11:26:10 +08:00
import { ElMessageBox, ElMessage, ElButton } from 'element-plus';
2024-07-10 23:40:32 +08:00
import { VxeGridInstance, VxeGridListeners, VxeGridPropTypes } from 'vxe-table';
import { useVxeTable } from '/@/hooks/useVxeTableOptionsHook';
import { Local } from '/@/utils/storage';
2024-07-01 11:26:10 +08:00
2024-06-15 13:02:35 +08:00
import EditTenant from '/@/views/system/tenant/component/editTenant.vue';
import GrantMenu from '/@/views/system/tenant/component/grantMenu.vue';
import GrantApi from '/@/views/system/role/component/grantApi.vue';
2024-06-15 13:02:35 +08:00
import ModifyRecord from '/@/components/table/modifyRecord.vue';
import { getAPI } from '/@/utils/axios-utils';
import { SysTenantApi } from '/@/api-services/api';
2024-07-10 23:40:32 +08:00
import { PageTenantInput, TenantOutput } from '/@/api-services/models';
2024-06-15 13:02:35 +08:00
2024-07-01 11:26:10 +08:00
const xGrid = ref<VxeGridInstance>();
2024-06-15 13:02:35 +08:00
const editTenantRef = ref<InstanceType<typeof EditTenant>>();
const grantMenuRef = ref<InstanceType<typeof GrantMenu>>();
const grantApiRef = ref<InstanceType<typeof GrantApi>>();
2024-06-15 13:02:35 +08:00
const state = reactive({
queryParams: {
name: undefined,
phone: undefined,
},
2024-07-10 23:40:32 +08:00
localPageParam: {
pageSize: 20 as number,
defaultSort: { field: 'orderNo', order: 'asc', descStr: 'desc' },
2024-06-15 13:02:35 +08:00
},
2024-07-01 11:26:10 +08:00
title: '',
});
2024-07-10 23:40:32 +08:00
// 本地存储参数
const localPageParamKey = 'localPageParam:sysTenant';
2024-07-01 11:26:10 +08:00
// 表格参数配置
2024-07-10 23:40:32 +08:00
const options = useVxeTable<TenantOutput>(
{
id: 'sysTenant',
name: '租户信息',
columns: [
// { type: 'checkbox', width: 40, fixed: 'left' },
{ type: 'seq', title: '序号', width: 60, fixed: 'left' },
{ field: 'name', title: '租户名称', minWidth: 160, showOverflow: 'tooltip' },
{ field: 'adminAccount', title: '租管账号', minWidth: 120, showOverflow: 'tooltip' },
{ field: 'phone', title: '电话', minWidth: 120, showOverflow: 'tooltip' },
2024-10-29 03:12:23 +08:00
// { field: 'host', title: '主机', showOverflow: 'tooltip' },
2024-07-10 23:40:32 +08:00
{ field: 'email', title: '邮箱', minWidth: 150, showOverflow: 'tooltip' },
2024-10-29 03:12:23 +08:00
{ field: 'expirationTime', title: '过期时间', minWidth: 150, showOverflow: 'tooltip' },
2024-07-10 23:40:32 +08:00
{ field: 'tenantType', title: '租户类型', minWidth: 100, showOverflow: 'tooltip', slots: { default: 'row_tenantType' } },
{ field: 'status', title: '状态', minWidth: 100, slots: { default: 'row_status' } },
{ field: 'dbType', title: '数据库类型', minWidth: 120, showOverflow: 'tooltip', slots: { default: 'row_dbType' } },
{ field: 'configId', title: '数据库标识', minWidth: 150, showOverflow: 'tooltip' },
{ field: 'connection', title: '数据库连接', minWidth: 300, showOverflow: 'tooltip' },
2024-09-06 17:52:22 +08:00
{ field: 'slaveConnections', title: '从库连接', minWidth: 300, showOverflow: 'tooltip' },
2024-07-10 23:40:32 +08:00
{ field: 'orderNo', title: '排序', width: 80, showOverflow: 'tooltip' },
{ field: '', title: '修改记录', width: 100, showOverflow: 'tooltip', slots: { default: 'row_record' } },
2024-09-06 17:52:22 +08:00
{ title: '操作', fixed: 'right', width: 400, showOverflow: true, slots: { default: 'row_buttons' } },
2024-07-10 23:40:32 +08:00
],
},
// vxeGrid配置参数(此处可覆写任何参数)参考vxe-table官方文档
{
// 代理配置
proxyConfig: { autoLoad: true, ajax: { query: ({ page, sort }) => handleQueryApi(page, sort) } },
// 排序配置
sortConfig: { defaultSort: Local.get(localPageParamKey)?.defaultSort || state.localPageParam.defaultSort },
// 分页配置
pagerConfig: { pageSize: Local.get(localPageParamKey)?.pageSize || state.localPageParam.pageSize },
// 工具栏配置
toolbarConfig: { export: false },
}
);
2024-06-15 13:02:35 +08:00
2024-07-01 11:26:10 +08:00
// 页面初始化
onMounted(() => {
2024-07-10 23:40:32 +08:00
state.localPageParam = Local.get(localPageParamKey) || state.localPageParam;
2024-06-15 13:02:35 +08:00
});
2024-07-10 23:40:32 +08:00
// 查询api
const handleQueryApi = async (page: VxeGridPropTypes.ProxyAjaxQueryPageParams, sort: VxeGridPropTypes.ProxyAjaxQuerySortCheckedParams) => {
const params = Object.assign(state.queryParams, { page: page.currentPage, pageSize: page.pageSize, field: sort.field, order: sort.order, descStr: 'desc' }) as PageTenantInput;
return getAPI(SysTenantApi).apiSysTenantPagePost(params);
2024-07-01 11:26:10 +08:00
};
2024-07-10 23:40:32 +08:00
// 查询操作
const handleQuery = async () => {
2024-07-16 16:07:57 +08:00
options.loading = true;
2024-07-10 23:40:32 +08:00
await xGrid.value?.commitProxy('query');
2024-07-16 16:07:57 +08:00
options.loading = false;
2024-06-15 13:02:35 +08:00
};
// 重置操作
2024-07-10 23:40:32 +08:00
const resetQuery = async () => {
2024-06-15 13:02:35 +08:00
state.queryParams.name = undefined;
state.queryParams.phone = undefined;
2024-07-10 23:40:32 +08:00
await xGrid.value?.commitProxy('reload');
2024-06-15 13:02:35 +08:00
};
// 打开新增页面
2024-07-01 11:26:10 +08:00
const handleAdd = () => {
state.title = '添加租户';
2024-06-15 13:02:35 +08:00
editTenantRef.value?.openDialog({ tenantType: 0, orderNo: 100 });
};
// 打开编辑页面
2024-07-01 11:26:10 +08:00
const handleEdit = (row: any) => {
state.title = '编辑租户';
2024-06-15 13:02:35 +08:00
editTenantRef.value?.openDialog(row);
};
// 删除
2024-07-01 11:26:10 +08:00
const handleDelete = (row: any) => {
2024-06-15 13:02:35 +08:00
ElMessageBox.confirm(`确定删除租户:【${row.name}】?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(async () => {
await getAPI(SysTenantApi).apiSysTenantDeletePost({ id: row.id });
2024-07-11 00:20:26 +08:00
await handleQuery();
2024-06-15 13:02:35 +08:00
ElMessage.success('删除成功');
})
.catch(() => {});
};
2024-07-11 00:38:57 +08:00
// 表格事件
const gridEvents: VxeGridListeners<TenantOutput> = {
// 只对 pager-config 配置时有效,分页发生改变时会触发该事件
async pageChange({ pageSize }) {
state.localPageParam.pageSize = pageSize;
Local.set(localPageParamKey, state.localPageParam);
},
// 当排序条件发生变化时会触发该事件
async sortChange({ field, order }) {
state.localPageParam.defaultSort = { field: field, order: order!, descStr: 'desc' };
Local.set(localPageParamKey, state.localPageParam);
},
};
2024-07-10 23:40:32 +08:00
// 打开授权菜单页面
const openGrantMenu = async (row: any) => {
grantMenuRef.value?.openDialog(row);
};
// 打开授权接口页面
const openGrantApi = async (row: any) => {
grantApiRef.value?.openDrawer(row);
};
2024-06-15 13:02:35 +08:00
// 创建租户库
const createTenantDb = (row: any) => {
2024-06-15 13:02:35 +08:00
ElMessageBox.confirm(`确定创建/更新租户数据库:【${row.name}】?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(async () => {
await getAPI(SysTenantApi).apiSysTenantInitTenantDbPost({ id: row.id });
2024-06-15 13:02:35 +08:00
ElMessage.success('创建/更新租户数据库成功');
})
.catch(() => {});
};
// 创建租户数据
const createTenantData = (row: any) => {
ElMessageBox.confirm(`确定创建/更新租户数据:【${row.name}】?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(async () => {
await getAPI(SysTenantApi).apiSysTenantInitTenantDataPost({ id: row.id });
ElMessage.success('创建/更新租户数据库成功');
})
.catch(() => {});
};
2024-06-15 13:02:35 +08:00
// 修改状态
2024-07-01 11:26:10 +08:00
const changeStatus = async (scope: any) => {
2024-06-15 13:02:35 +08:00
getAPI(SysTenantApi)
2024-07-01 11:26:10 +08:00
.apiSysTenantSetStatusPost({ id: scope.row.id, status: scope.row.status })
2024-06-15 13:02:35 +08:00
.then(() => {
ElMessage.success('租户状态设置成功');
})
2024-07-01 11:26:10 +08:00
.catch(async () => {
scope.row.status = scope.row.status === 1 ? 2 : 1;
await xGrid.value?.updateStatus(scope);
2024-06-15 13:02:35 +08:00
});
};
2024-07-10 23:40:32 +08:00
// 重置密码
const resetTenantPwd = async (row: any) => {
ElMessageBox.confirm(`确定重置密码:【${row.name}】?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(async () => {
await getAPI(SysTenantApi)
.apiSysTenantResetPwdPost({ userId: row.userId })
.then((res) => {
ElMessage.success(`密码重置成功为:${res.data.result}`);
});
})
.catch(() => {});
};
// 同步所有租户数据库
2024-08-14 13:58:16 +08:00
const syncTenantDb = () => {
ElMessageBox.confirm(`确定同步所有租户数据库?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(async () => {
2024-07-01 11:26:10 +08:00
options.loading = true;
await getAPI(SysTenantApi).apiSysTenantSyncTenantDbPost();
ElMessage.success('同步成功');
2024-07-01 11:26:10 +08:00
options.loading = false;
})
.catch(() => {});
};
2024-06-15 13:02:35 +08:00
</script>