diff --git a/.gitignore b/.gitignore index 9b33c61..af898b3 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ dist .hbuilderx .trae .claude/settings.local.json +*.pen nul *.timestamp-* diff --git a/src/pages/scan/bluetooth-debug/index.vue b/src/pages/scan/bluetooth-debug/index.vue new file mode 100644 index 0000000..f209568 --- /dev/null +++ b/src/pages/scan/bluetooth-debug/index.vue @@ -0,0 +1,1469 @@ + + + + + diff --git a/src/pages/user/index.vue b/src/pages/user/index.vue index 5c0b792..66e0cae 100644 --- a/src/pages/user/index.vue +++ b/src/pages/user/index.vue @@ -93,9 +93,12 @@ - - + + + + + @@ -200,6 +203,14 @@ page { overflow: hidden; } +.tabbar-placeholder { + flex-shrink: 0; + height: 140rpx; + // iOS 安全区 + padding-bottom: constant(safe-area-inset-bottom, 0px); + padding-bottom: env(safe-area-inset-bottom, 0px); +} + .avatar-wrapper { border: 4rpx solid rgba(255, 255, 255, 0.3); box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.15); diff --git a/src/utils/constants/dict-enum.ts b/src/utils/constants/dict-enum.ts index 3d93608..272b8bd 100644 --- a/src/utils/constants/dict-enum.ts +++ b/src/utils/constants/dict-enum.ts @@ -40,6 +40,11 @@ const INFRA_DICT = { INFRA_OPERATE_TYPE: 'infra_operate_type', } as const +/** ========== OPS - 运维模块 ========== */ +const OPS_DICT = { + OPS_ORDER_PRIORITY: 'ops_order_priority', +} as const + /** ========== BPM - 工作流模块 ========== */ const BPM_DICT = { BPM_MODEL_FORM_TYPE: 'bpm_model_form_type', // BPM 模型表单类型 @@ -55,6 +60,7 @@ const BPM_DICT = { /** 字典类型枚举 - 统一导出 */ export const DICT_TYPE = { ...BPM_DICT, + ...OPS_DICT, ...INFRA_DICT, ...SYSTEM_DICT, ...COMMON_DICT,