Administrator
2025-07-21 9c8f2d141e88b18c289523d4fa777bb55886525c
fix(clothesType): 修复订单列表选择提示信息

-将提示信息从"请选择待收货的订单"修改为"请选择待发货的订单"
-确保用户选择的订单状态符合预期
1 files modified
2 ■■■ changed files
src/main/resources/templates/febs/views/modules/clothesType/orderList.html 2 ●●● patch | view | raw | blame | history
src/main/resources/templates/febs/views/modules/clothesType/orderList.html
@@ -218,7 +218,7 @@
                let ids = "";
                for(let i = 0;i < data.length;i++){
                    if(data[i].status != 2){
                        febs.alert.warn('请选择待收货的订单');
                        febs.alert.warn('请选择待发货的订单');
                        return;
                    }else{
                        ids = data[i].id;