auth-web/src/components/Table/Userinfo/columns.tsx

15 lines
395 B
TypeScript
Raw Normal View History

import UserinfoDialog from '@/components/Table/Userinfo/UserinfoDialog.vue';
2025-04-25 16:21:15 +08:00
import { addDialog } from '@/components/ReDialog/index';
/**
* *
* @param userId
*/
export const selectUserinfo = async (userId: string) => {
2025-04-24 13:43:37 +08:00
addDialog({
title: '查看用户信息',
draggable: true,
contentRenderer: (): JSX.Element => <UserinfoDialog userId={userId} />,
});
};