fix: 常用方、患者管理
Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
CI / CI OK (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Issue Close Require / close-issues (push) Has been cancelled
Close stale issues / stale (push) Has been cancelled

This commit is contained in:
2025-12-26 16:48:46 +08:00
parent 7dc90731dc
commit 5c1f59e351
5 changed files with 210 additions and 6 deletions

View File

@@ -5,6 +5,30 @@ import { isFunction } from '@vben/utils';
import SysAudioMp3 from '/public/audio/sys.mp3';
/**
* 检测是否为开发环境
* @returns boolean
*/
export const isDev = (): boolean => {
return import.meta.env.DEV;
};
/**
* 检测是否为生产环境
* @returns boolean
*/
export const isProd = (): boolean => {
return import.meta.env.PROD;
};
/**
* 获取 WebSocket URL
* @returns string WebSocket 连接地址
*/
export const getWebSocketUrl = (): string => {
return import.meta.env.VITE_WS_URL || 'ws://localhost:12080/ws';
};
export const playOnceAndDestroySys = () => {
const audio = new Audio(SysAudioMp3);