yangxiaolei 5 miesięcy temu
rodzic
commit
167cefd5fb

+ 4 - 4
app/src/main/java/com/sheep/gamegroup/util/Jump2View.java

@@ -3016,7 +3016,7 @@ public class Jump2View {
     public void gotoYYShop(Context activity) {
         CommonUtil.getInstance().getConfigValue(Config.KEY_YY_SHOP_URL, url -> {
             if (TextUtils.isEmpty(url))
-                url = "http://smallstation.9yan.io/yy_shop/#/pages/index/index";
+                url = "http://smallstation.kfzs.com/yy_shop/#/pages/index/index";
             goWeb(activity, new WebParams(url, Config.YY_SHOP_NAME));
         });
     }
@@ -3024,7 +3024,7 @@ public class Jump2View {
     public void gotoYYShopAssist(Context activity) {
         CommonUtil.getInstance().getConfigValue(Config.KEY_YY_SHOP_ASSIST_URL, url -> {
             if (TextUtils.isEmpty(url))
-                url = "http://smallstation.9yan.io/yy_shop/#/pages/clerk/index";
+                url = "http://smallstation.kfzs.com/yy_shop/#/pages/clerk/index";
             goWeb(activity, new WebParams(url, Config.YY_SHOP_NAME));
         });
     }
@@ -3032,7 +3032,7 @@ public class Jump2View {
     public void gotoYYShopMerchandiseById(Context activity, String merId) {
         CommonUtil.getInstance().getConfigValue(Config.KEY_YY_SHOP_GOODS_URL, url -> {
             if (TextUtils.isEmpty(url)) {
-                url = "http://smallstation.9yan.io/yy_shop/#/pages/goods/goodsDetail";
+                url = "http://smallstation.kfzs.com/yy_shop/#/pages/goods/goodsDetail";
             }
             url += "?id=" + merId;
             goWeb(activity, new WebParams(url, Config.YY_SHOP_NAME));
@@ -3042,7 +3042,7 @@ public class Jump2View {
     public void gotoYYShopMerchandiseBySku(Context activity, String sku) {
         CommonUtil.getInstance().getConfigValue(Config.KEY_YY_SHOP_SKU_URL, url -> {
             if (TextUtils.isEmpty(url)) {
-                url = "http://smallstation.9yan.io/yy_shop/#/pages/index/scanTurn";
+                url = "http://smallstation.kfzs.com/yy_shop/#/pages/index/scanTurn";
             }
             url += "?sku=" + sku;
             goWeb(activity, new WebParams(url, Config.YY_SHOP_NAME));

+ 1 - 1
app/src/main/java/com/sheep/gamegroup/view/activity/MiddleSchemeAct.java

@@ -261,7 +261,7 @@ public class MiddleSchemeAct extends Activity {
             case "po":
                 String order_no = uri.getQueryParameter("a");
                 String merchandise_id = uri.getQueryParameter("b");
-                String url = String.format(Locale.CHINA, "http://%s/#/placing-orders/%s?merchandise_id=%s", TextUtils.equals("sheep", BuildConfig.FLAVOR) ? "smallstation.9yan.io/iqiyi_vip_member" : "10.8.220.248:8080", order_no, merchandise_id);
+                String url = String.format(Locale.CHINA, "http://%s/#/placing-orders/%s?merchandise_id=%s", TextUtils.equals("sheep", BuildConfig.FLAVOR) ? "smallstation.kfzs.com/iqiyi_vip_member" : "10.8.220.248:8080", order_no, merchandise_id);
                 ViewUtil.showMsgDialog(context, new DialogConfig().setMsg("你有一个拼单邀请,是否立即前往?")
                         .setBtnLeftText("取消").setBtnRightText("前往")
                         .setBtnRightOnClickListener(view -> Jump2View.getInstance().goWeb(SheepApp.getInstance().getCurrentActivity(), new WebParams(url).setTitle("爱奇艺会员VIP"))));

+ 1 - 1
app/src/main/java/com/sheep/gamegroup/view/fragment/FgtPersonalCenter.java

@@ -594,7 +594,7 @@ public class FgtPersonalCenter extends BaseFragment {
                     if (!TextUtils.isEmpty(faqUrl))
                         Jump2View.getInstance().goWeb(activity, faqUrl, "FAQ帮助");
                     else
-                        Jump2View.getInstance().goWeb(activity, "http://smallstation.9yan.io/h5_faq/#/faq", "FAQ帮助");
+                        Jump2View.getInstance().goWeb(activity, "http://smallstation.kfzs.com/h5_faq/#/faq", "FAQ帮助");
                 });
                 USER_FAQ.onEvent();
                 break;

+ 1 - 1
app/src/main/java/com/sheep/jiuyan/samllsheep/Config.java

@@ -132,7 +132,7 @@ public class Config {
     //small_station地址 key
     public static final String KEY_SMALL_STATION_URL = "small_station_url";
     //small_station地址
-    public static String SMALL_STATION_URL_SHEEP = "http://smallstation.9yan.io/small_sheep_app_nosignin";
+    public static String SMALL_STATION_URL_SHEEP = "http://smallstation.kfzs.com/small_sheep_app_nosignin";
     public static String SMALL_STATION_URL_TEST = "http://10.8.230.20:8082";
     //    public static String SMALL_STATION_URL_TEST = "http://10.8.240.180:8080";
     //在数据库中表 config 中 配置 small_station_url后,可以进行设置 ,否则使用默认的值

+ 2 - 2
gradle.properties

@@ -17,8 +17,8 @@
 # org.gradle.parallel=true
 #android.injected.build.model.only.versioned = 3
 
-VERSION_NAME=4.0.0
-VERSION_CODE=4000000
+VERSION_NAME=4.0.1
+VERSION_CODE=4000001
 ANDROID_COMPILE_SDK_VERSION=30
 ANDROID_MIN_SDK_VERSION=21
 ANDORID_TARGET_SDK_VERSION=30