import type { TokenInfo } from '@/stores/user'; import request from '@/utils/request'; import type { CCFlowResponse } from './types'; const { VITE_GLOB_PrivateKey } = import.meta.env export function UserLogin(userNo: string, orgNo: string) { return request.post>("/WF/API/Port_Login", { data: { privateKey: VITE_GLOB_PrivateKey, userNo, orgNo } }) }