From 2efd13c5d41f8c32cb20e0590f798f0ef79da6c7 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 26 Jul 2023 12:49:57 +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