From ee8e8732ccef6d029201950b5e5caf4a5ed7d3fe Mon Sep 17 00:00:00 2001 From: lzh Date: Sat, 21 Mar 2026 22:07:11 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9D=82=E9=A1=B9=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=EF=BC=88=E8=93=9D=E7=89=99=E8=B0=83=E8=AF=95=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E9=A3=8E=E6=A0=BC=E3=80=81=E7=94=A8=E6=88=B7=E9=A1=B5=E3=80=81?= =?UTF-8?q?=E5=AD=97=E5=85=B8=E6=9E=9A=E4=B8=BE=E3=80=81gitignore=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修复蓝牙调试页 ESLint style/max-statements-per-line 错误 - 用户页布局调整 - 字典枚举新增 OPS 模块注释 - gitignore 新增 *.pen 忽略规则 Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 1 + src/pages/scan/bluetooth-debug/index.vue | 1469 ++++++++++++++++++++++ src/pages/user/index.vue | 15 +- src/utils/constants/dict-enum.ts | 6 + 4 files changed, 1489 insertions(+), 2 deletions(-) create mode 100644 src/pages/scan/bluetooth-debug/index.vue 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,