Bläddra i källkod

ios配置文件接口修改

lcl 1 år sedan
förälder
incheckning
9e80286932
1 ändrade filer med 11 tillägg och 1 borttagningar
  1. 11 1
      Areas/Api/Controllers/app/SystemSetController.cs

+ 11 - 1
Areas/Api/Controllers/app/SystemSetController.cs

@@ -495,9 +495,19 @@ namespace MySystem.Areas.Api.Controllers
             Dictionary<string, object> result = new Dictionary<string, object>();
             Dictionary<string, object> webcredentials = new Dictionary<string, object>();
             List<string> apps = new List<string>();
-            apps.Add("7HQBL6X2N5.com.kexiaoshuang.ios");
+            apps.Add("TKFY2BZ6Z7.com.cyb888.cyb");
             webcredentials.Add("apps", apps);
             result.Add("webcredentials", webcredentials);
+
+            Dictionary<string, object> applinks = new Dictionary<string, object>();
+            applinks.Add("apps", new List<string>());
+            List<Dictionary<string, object>> details = new List<Dictionary<string, object>>();
+            Dictionary<string, object> detail = new Dictionary<string, object>();
+            detail.Add("appID", "TKFY2BZ6Z7.com.cyb888.cyb");
+            detail.Add("paths", "/ios/*");
+            details.Add(detail);
+            applinks.Add("details", details);
+            result.Add("applinks", applinks);
             return result;
         }