| | |
| | | JSONObject contentJson1 = new JSONObject();
|
| | | contentJson1.put("color", fontColor1);
|
| | | contentJson1.put("content", "预估分享奖金:");
|
| | |
|
| | | String shareMoney = "0";
|
| | | String revenue = "¥0";
|
| | | String totalGetMoney = activity.getTotalGetMoney();
|
| | | if (totalGetMoney != null && totalGetMoney.trim().length() > 0) {
|
| | | String[] split = totalGetMoney.split(":");
|
| | | if (split != null) {
|
| | | revenue = split[1];
|
| | | }
|
| | | |
| | | String[] splitMoney = totalGetMoney.split("¥");
|
| | | if (splitMoney != null) {
|
| | | shareMoney = splitMoney[1];
|
| | | }
|
| | | }
|
| | |
|
| | |
| | |
|
| | | data.put("title", title);
|
| | | data.put("revenue", array);
|
| | | data.put("fanMoney", shareMoney);
|
| | | data.put("shareId", map.get("shareId"));
|
| | | data.put("shareImg", map.get("loadResult"));
|
| | | data.put("notifyDesc", configService.get("goods_share_multiple_notify"));
|