From 32788c14d2900c460f992d931f8b00af82fd0ede Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Sun, 04 Feb 2024 10:44:29 +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