From 5e2926edddb3e89f1aa3882290fec577246e5e2c Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Sat, 06 Jun 2026 15:08:04 +0800
Subject: [PATCH] refactor: 简化设备调用记录表格列渲染

---
 applications/task-work-order/src/utils/util.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/applications/task-work-order/src/utils/util.js b/applications/task-work-order/src/utils/util.js
index 3d3bd60..4bcb341 100644
--- a/applications/task-work-order/src/utils/util.js
+++ b/applications/task-work-order/src/utils/util.js
@@ -511,9 +511,9 @@
 
 	const jumpFun = () => {
 		const urlParams = new URLSearchParams(window.location.search);
-		const devLogin = urlParams.get('devLogin');
+		const openDev = urlParams.get('openDev');
 		const isDev = VITE_APP_ENV === 'development'
-		if (isDev || devLogin) {
+		if (isDev || openDev) {
 			router.push({ path: '/login' })
 			// setTimeout(() => location.reload())
 		} else {

--
Gitblit v1.9.3