Commit f68cfbed by 霍志良

feat:私聊发起收款

parent 950d5476
...@@ -10,7 +10,7 @@ ext { ...@@ -10,7 +10,7 @@ ext {
"m-fm" : "0.0.30.04", "m-fm" : "0.0.30.04",
"m-user" : "0.0.61.82", "m-user" : "0.0.61.82",
"m-home" : "0.0.22.84", "m-home" : "0.0.22.84",
"m-im" : "0.0.20.84", "m-im" : "0.0.20.87",
"m-dynamic" : "0.0.7.35", "m-dynamic" : "0.0.7.35",
"m-article" : "0.0.0.10", "m-article" : "0.0.0.10",
...@@ -93,7 +93,7 @@ ext { ...@@ -93,7 +93,7 @@ ext {
"m-fm" : "0.0.30.07", "m-fm" : "0.0.30.07",
"m-user" : "0.0.61.82", "m-user" : "0.0.61.82",
"m-home" : "0.0.22.83", "m-home" : "0.0.22.83",
"m-im" : "0.0.20.84", "m-im" : "0.0.20.87",
"m-dynamic" : "0.0.7.35", "m-dynamic" : "0.0.7.35",
"m-article" : "0.0.0.8", "m-article" : "0.0.0.8",
......
...@@ -27,6 +27,7 @@ class ImConstants { ...@@ -27,6 +27,7 @@ class ImConstants {
//免费体验订单详情 后边拼接orderid 如果没有拼"" //免费体验订单详情 后边拼接orderid 如果没有拼""
val ORDER_DETAIL = HttpConfig.MH5_URL + "wb/user/order/detail?needOrderHelperAlert=1&orderid=" val ORDER_DETAIL = HttpConfig.MH5_URL + "wb/user/order/detail?needOrderHelperAlert=1&orderid="
val PAY_DETAIL = HttpConfig.MH5_URL + "wb/user/payment/detail?orderId="
const val BIND_PHONE_ACTION = "wxbind" const val BIND_PHONE_ACTION = "wxbind"
......
...@@ -81,7 +81,7 @@ public class MsgViewHolderReceivedMoney extends MsgViewHolderBase { ...@@ -81,7 +81,7 @@ public class MsgViewHolderReceivedMoney extends MsgViewHolderBase {
if (isReceivedMessage()) { if (isReceivedMessage()) {
if (isNewOrder != null && isNewOrder) { if (isNewOrder != null && isNewOrder) {
H5Params orderParams = new H5Params( H5Params orderParams = new H5Params(
ImConstants.Companion.getORDER_DETAIL() + (orderid.isEmpty() ? "" : orderid), null); ImConstants.Companion.getPAY_DETAIL() + (orderid.isEmpty() ? "" : orderid), null);
NewH5Activity.start(context, orderParams); NewH5Activity.start(context, orderParams);
} else { } else {
NewH5Activity.start(view.getContext(), new H5Params(HttpConfig.Companion.getH5_URL() + "receipt/order?oid=" + orderid, null)); NewH5Activity.start(view.getContext(), new H5Params(HttpConfig.Companion.getH5_URL() + "receipt/order?oid=" + orderid, null));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment