我想当批量或单个点击审核通过时,审核结果改为“审核通过”,怎么在下面js进行修改。 var boxes = _g().getWidgetsByName("box"); var cells = []; if (typeof(boxes[0]) != "undefined") { for (i = 0; i < boxes.length; i++) { if (boxes[i].selected()) { cells.push(boxes[i].options.location); } } } else { if (boxes.selected()) { cells.push(boxes.options.location); } } |