From 0743300bf8e266b53968a21ab9188eb7ccbf4a70 Mon Sep 17 00:00:00 2001 From: 陶杰 <1378534974@qq.com> Date: 星期日, 29 十二月 2024 14:37:14 +0800 Subject: [PATCH] 1.批量任务-用户列表传入userId --- pages/sms/send-batch/index.vue | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/pages/sms/send-batch/index.vue b/pages/sms/send-batch/index.vue index 692a6af..15ff60a 100644 --- a/pages/sms/send-batch/index.vue +++ b/pages/sms/send-batch/index.vue @@ -331,7 +331,9 @@ } }, outputFormat: (val) => { - return val?.length ? val.map((i) => {return {userId:i.id,userPhone:i.tel} }) : [] + console.log(val) + return val?.length ? val.map((i) => {return {userId:i.userId,userPhone:i.tel} }) : [] + }, forceDisabled: true, }, -- Gitblit v1.9.3