261 预约管理-》科室预约工作时间维护:所属机构下拉选项未过滤掉状态为未启动的机构名称(包括【新增】/【编辑】界面)

This commit is contained in:
HuangXinQuan
2026-03-27 11:41:53 +08:00
parent 2d705d2f81
commit 353f267488
4 changed files with 10 additions and 15 deletions

View File

@@ -154,3 +154,11 @@ export default {
getDiagTypeList,
getDiagTypeDescription,
};
/**
* 状态通用常量(与后端 status 字段保持一致0=正常/启用1=停用)
*/
export const STATUS = {
NORMAL: '0', // 正常/启用
DISABLE: '1' // 停用
};