From a2a1efc92521f7a821dc437ff919a39aa292ad06 Mon Sep 17 00:00:00 2001 From: skyouc Date: 星期四, 09 一月 2025 19:51:25 +0800 Subject: [PATCH] # 1. 波次预览重复问题 2. PDA组拖超过3个物料后,组拖按钮被遮挡 3. 平库入库物料ID为空 4. PDA出库成功后,界面数据重置,避免重复操作 5. 入库单历史档,按时间倒序排列 --- uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js | 22 +++++++++++----------- 1 files changed, 11 insertions(+), 11 deletions(-) diff --git a/uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js b/uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js index 9a10ece..7f549f6 100644 --- a/uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js +++ b/uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js @@ -1,12 +1,12 @@ -export function isPC() { - var userAgentInfo = navigator.userAgent; - var Agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"]; - var flag = true; - for (let v = 0; v < Agents.length - 1; v++) { - if (userAgentInfo.indexOf(Agents[v]) > 0) { - flag = false; - break; - } - } - return flag; +export function isPC() { + var userAgentInfo = navigator.userAgent; + var Agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"]; + var flag = true; + for (let v = 0; v < Agents.length - 1; v++) { + if (userAgentInfo.indexOf(Agents[v]) > 0) { + flag = false; + break; + } + } + return flag; } \ No newline at end of file -- Gitblit v1.9.1