From 2c7779ab5589bf6d3523fc54cfcf363be0a01e26 Mon Sep 17 00:00:00 2001 From: zch Date: Tue, 28 Apr 2026 16:11:46 +0800 Subject: [PATCH] =?UTF-8?q?change:=E6=8C=89=E7=85=A7=E8=A6=81=E6=B1=82?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 车辆生命周期点击维保记录跳转该记录的详情页,而不是列表页 - 装卸车流转的轮胎安装的里程改名为车辆里程 --- .../resources/templates/tyre/car/car.html | 22 +++++++-- .../templates/tyre/car/lifecycle.html | 46 +++++++++++++------ .../templates/tyre/tyre/typreDetill2.html | 2 +- 3 files changed, 52 insertions(+), 18 deletions(-) diff --git a/ruoyi-admin/src/main/resources/templates/tyre/car/car.html b/ruoyi-admin/src/main/resources/templates/tyre/car/car.html index 8d777c19..dd081d9d 100644 --- a/ruoyi-admin/src/main/resources/templates/tyre/car/car.html +++ b/ruoyi-admin/src/main/resources/templates/tyre/car/car.html @@ -247,12 +247,28 @@ $("#lifecycleFrame").attr("src", "about:blank"); } - function openMaintenanceOrderTabFromLifecycle() { - // 子 iframe 不直接创建页签:由车辆列表页所在主 iframe 调用 RuoYi openTab,才能正确挂到后台页签容器。 - $.modal.openTab("维保工单列表", ctx + "tyre/order"); + function openMaintenanceOrderDetailTabFromLifecycle(orderId, orderNo) { + var normalizedOrderId = $.common.nullToStr(orderId); + if (!/^\d+$/.test(normalizedOrderId)) { + // 子 iframe 传来的主键只作为导航参数使用,父页再校验一次避免拼接异常详情地址。 + $.modal.alertWarning("工单ID无效,无法打开维保工单详情"); + return; + } + var tabTitle = buildMaintenanceOrderDetailTitle(orderNo); + // 页签必须由车辆列表所在主 iframe 发起,RuoYi 才能把详情页挂到后台主框架,而不是抽屉 iframe 内部。 + $.modal.openTab(tabTitle, ctx + "tyre/order/edit/" + encodeURIComponent(normalizedOrderId)); closeLifecycleDrawer(); } + function buildMaintenanceOrderDetailTitle(orderNo) { + var text = $.common.nullToStr(orderNo); + if (!text || text === "-") { + return "维保工单详情"; + } + // 页签标题不承载 HTML,去掉尖括号可避免异常工单号影响主框架页签 DOM。 + return "维保工单详情 - " + text.replace(/[<>]/g, ""); + } + function escapeHtml(value) { return String(value) .replace(/&/g, "&") diff --git a/ruoyi-admin/src/main/resources/templates/tyre/car/lifecycle.html b/ruoyi-admin/src/main/resources/templates/tyre/car/lifecycle.html index 4c0ebd18..3e19bbce 100644 --- a/ruoyi-admin/src/main/resources/templates/tyre/car/lifecycle.html +++ b/ruoyi-admin/src/main/resources/templates/tyre/car/lifecycle.html @@ -432,7 +432,8 @@
-
+ + -
+
轮位视图
@@ -457,7 +458,7 @@
生命周期 - 按时间倒序展示维保工单,点击记录打开维保工单列表页签 + 按时间倒序展示维保工单,点击记录打开维保工单详情页签