From a0d2776cfea592019382ea10497a6b6513241a2c Mon Sep 17 00:00:00 2001 From: Administrator <15274802129@163.com> Date: Mon, 21 Jul 2025 17:49:15 +0800 Subject: [PATCH] refactor(orderList): 修改订单状态校验逻辑 --- src/main/resources/templates/febs/views/modules/clothesType/orderList.html | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/clothesType/orderList.html b/src/main/resources/templates/febs/views/modules/clothesType/orderList.html index 56572f0..7a2823b 100644 --- a/src/main/resources/templates/febs/views/modules/clothesType/orderList.html +++ b/src/main/resources/templates/febs/views/modules/clothesType/orderList.html @@ -194,8 +194,8 @@ } let ids = ""; for(let i = 0;i < data.length;i++){ - if(data[i].status != 2){ - febs.alert.warn('请选择待发货的订单'); + if(data[i].status != 3){ + febs.alert.warn('请选择待收货的订单'); return; }else{ ids = data[i].id; -- Gitblit v1.9.1