From 356e3819dd87bc29d7d834052547ba7721efe6c6 Mon Sep 17 00:00:00 2001 From: duxingchen Date: Fri, 7 Aug 2026 16:51:00 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B3=B3=E9=81=93=E2=86=92=E5=88=86?= =?UTF-8?q?=E6=94=AF=20=E7=BB=9F=E4=B8=80=E5=91=BD=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/pages/scan/components/TaskSwipeCards.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/track-uniapp/src/pages/scan/components/TaskSwipeCards.vue b/track-uniapp/src/pages/scan/components/TaskSwipeCards.vue index fd95c34..78990c4 100644 --- a/track-uniapp/src/pages/scan/components/TaskSwipeCards.vue +++ b/track-uniapp/src/pages/scan/components/TaskSwipeCards.vue @@ -7,7 +7,7 @@ {{ lanes[currentLane].label }} 步骤 {{ lanes[currentLane]._cardIdx + 1 }}/{{ lanes[currentLane].cards.length }} - · ← 左右滑切换泳道 → + · ← 左右滑切换分支 → @@ -15,11 +15,11 @@ - + - + @@ -73,7 +73,7 @@ - + { @@ -157,12 +157,12 @@ export default { if (isMain) { lane.cards.push({ ...t, _key: t.id + '_' + lane._key, _isMain: lane._key === 'main' }); - // 递归:本泳道下一步 = TRANSFER 子节点 + // 递归:本分支下一步 = TRANSFER 子节点 if (t.child_tasks && t.child_tasks.length) { const nextMain = t.child_tasks.filter(c => c.task_type === 'TRANSFER' || c.task_type === 'RECOVERY' || !c.task_type); followMain(nextMain, lane); - // SPAWN 子节点 → 新泳道 + // SPAWN 子节点 → 新分支 const spawns = t.child_tasks.filter(c => c.task_type === 'SPAWN'); for (const sc of spawns) { const blabel = this.branchLabelMap[sc.id] || '分支';