This commit is contained in:
juntao
2020-07-16 11:03:35 +08:00
parent 78eb6b7b02
commit 1c26c35571
3 changed files with 10 additions and 10 deletions

View File

@ -20,12 +20,13 @@ import java.util.Map;
public class DataLogUtils {
// 轮播图
public static void uploadLunbotuLog(Context context, String type, String text, String index, String source) {
public static void uploadLunbotuLog(Context context, String type, String text, String title, String index, String source) {
Map<String, Object> map = new HashMap<>();
map.put("index", index);
map.put("type", type);
map.put("text", text);
map.put("source", source);
map.put("slide_title", title);
uploadLog(context, "slide", map);
}