From de789b398cbf59db47b77499b7cc17cca63bf2c0 Mon Sep 17 00:00:00 2001 From: yangbingqiao Date: Fri, 7 Oct 2022 23:21:50 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9AcurrentApplet=E6=96=B0=E5=A2=9Eapp?= =?UTF-8?q?letType=E5=92=8CpaymentUrl=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/finogeeks/mop/api/mop/AppletManageModule.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/src/main/java/com/finogeeks/mop/api/mop/AppletManageModule.java b/android/src/main/java/com/finogeeks/mop/api/mop/AppletManageModule.java index 818ecfe..d25998a 100644 --- a/android/src/main/java/com/finogeeks/mop/api/mop/AppletManageModule.java +++ b/android/src/main/java/com/finogeeks/mop/api/mop/AppletManageModule.java @@ -51,12 +51,14 @@ public class AppletManageModule extends BaseApi { res.put("description", applet.getDescription()); res.put("version", applet.getVersion()); res.put("thumbnail", applet.getThumbnail()); + res.put("appletType", applet.getAppletType()); Map wechatLoginInfo = new HashMap<>(3); WechatLoginInfo wechatLogin = applet.getWechatLoginInfo(); if (wechatLogin != null) { wechatLoginInfo.put("wechatOriginId", wechatLogin.getWechatOriginId()); wechatLoginInfo.put("profileUrl", wechatLogin.getProfileUrl()); wechatLoginInfo.put("phoneUrl", wechatLogin.getPhoneUrl()); + wechatLoginInfo.put("paymentUrl", wechatLogin.getPaymentUrl()); res.put("wechatLoginInfo",wechatLoginInfo); }else{ res.put("wechatLoginInfo", null);