Commit 1ccf8a24 by 霍志良

fixbug:修复老订单预约时间报错问题

parent ec0cce39
...@@ -20,8 +20,8 @@ import java.util.List; ...@@ -20,8 +20,8 @@ import java.util.List;
public final class DemoGlobalConfig implements IConfigModule { public final class DemoGlobalConfig implements IConfigModule {
String APP_DOMAIN = "https://api.github.com/"; String APP_DOMAIN = "https://api.github.com/";
// public static String appEnv = YDLConstants.ENV_AUTO_TEST; // public static String appEnv = YDLConstants.ENV_AUTO_TEST;
public static String appEnv = YDLConstants.ENV_TEST; // public static String appEnv = YDLConstants.ENV_TEST;
// public static String appEnv = YDLConstants.ENV_PROD; public static String appEnv = YDLConstants.ENV_PROD;
@Override @Override
public void injectAppLifecycle(@NotNull Context context, @NotNull List<IAppLifecycles> lifecycles) { public void injectAppLifecycle(@NotNull Context context, @NotNull List<IAppLifecycles> lifecycles) {
......
...@@ -10,7 +10,7 @@ ext { ...@@ -10,7 +10,7 @@ ext {
"m-fm" : "0.0.30.03", "m-fm" : "0.0.30.03",
"m-user" : "0.0.61.36", "m-user" : "0.0.61.36",
"m-home" : "0.0.22.64", "m-home" : "0.0.22.64",
"m-im" : "0.0.19.20", "m-im" : "0.0.19.22",
"m-dynamic" : "0.0.7.22", "m-dynamic" : "0.0.7.22",
"m-article" : "0.0.0.8", "m-article" : "0.0.0.8",
...@@ -93,7 +93,7 @@ ext { ...@@ -93,7 +93,7 @@ ext {
"m-fm" : "0.0.30.01", "m-fm" : "0.0.30.01",
"m-user" : "0.0.61.36", "m-user" : "0.0.61.36",
"m-home" : "0.0.22.64", "m-home" : "0.0.22.64",
"m-im" : "0.0.19.20", "m-im" : "0.0.19.22",
"m-dynamic" : "0.0.7.22", "m-dynamic" : "0.0.7.22",
"m-article" : "0.0.0.8", "m-article" : "0.0.0.8",
......
...@@ -56,6 +56,12 @@ public class MsgViewHolderModifyTime extends MsgViewHolderBase { ...@@ -56,6 +56,12 @@ public class MsgViewHolderModifyTime extends MsgViewHolderBase {
@Override @Override
protected void onItemClick() { protected void onItemClick() {
NewH5Activity.start(context, new H5Params(userUrl + "&dsmId=" + dsmId, "预约时间修改")); String url;
if (userUrl.endsWith("?")) {
url = userUrl + "dsmId=" + dsmId;
} else {
url = userUrl + "&dsmId=" + dsmId;
}
NewH5Activity.start(context, new H5Params(url, "预约时间修改"));
} }
} }
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