- 新增 WindowsCredential 模型和控制器,用于管理 Windows 凭据 - 新增 RemoteAccessToken 模型,支持生成可分享的远程访问链接 - 更新 RemoteDesktopController,添加 Token 生成、验证、撤销等 API - 更新前端 RemoteDesktopModal,支持4种连接方式:快速连接、生成分享链接、手动输入、链接管理 - 新增 WindowsCredentialManager 组件用于管理 Windows 凭据 - 新增 RemoteAccessPage 用于通过 Token 访问远程桌面 - 添加 Vue Router 支持 /remote/:token 路由 - 更新数据库迁移,添加 WindowsCredentials 和 RemoteAccessTokens 表
13 lines
477 B
Plaintext
13 lines
477 B
Plaintext
# 【开发】环境变量
|
||
|
||
# 应用部署基础路径(如部署在子目录 /admin,则设置为 /admin/)
|
||
VITE_BASE_URL = /
|
||
|
||
# API 请求基础路径(开发环境设置为 / 使用代理,生产环境设置为完整后端地址)
|
||
VITE_API_URL = /
|
||
|
||
# 代理目标地址(开发环境通过 Vite 代理转发请求到此地址,解决跨域问题)
|
||
VITE_API_PROXY_URL = https://m1.apifoxmock.com/m1/6400575-6097373-default
|
||
|
||
# Delete console
|
||
VITE_DROP_CONSOLE = false |