From c0cae0a68ec2d917a9fad1f093a16b6d1d16af3c Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 16 Mar 2023 13:41:37 +0800
Subject: [PATCH] 后台修改

---
 src/main/resources/templates/febs/views/modules/order/orderList.html |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/main/resources/templates/febs/views/modules/order/orderList.html b/src/main/resources/templates/febs/views/modules/order/orderList.html
index e4791c1..b19b257 100644
--- a/src/main/resources/templates/febs/views/modules/order/orderList.html
+++ b/src/main/resources/templates/febs/views/modules/order/orderList.html
@@ -195,17 +195,20 @@
                     printSelect(checkStatus.data)
                 }
             }
+            let statisticIds = 0;
             if(event === 'goodsStatistics'){
                 var data = checkStatus.data;
                 let statistics = 0;
                 for(let i = 0;i < data.length;i++){
                         statistics = statistics+ "," + data[i].id;
                 }
+                console.log(statistics);
                 if(statistics == null || statistics == ""){
                     febs.alert.warn('请选择需要统计的订单');
                     return;
                 }
-                let statisticIds = statistics;
+                statisticIds = statistics;
+                console.log(statisticIds);
                 febs.modal.open( '商品数量统计', 'modules/order/goodsStatistics/'+statisticIds, {
                     maxmin: true,
                 });

--
Gitblit v1.9.1