tijiao
This commit is contained in:
@@ -138,8 +138,8 @@ namespace BingoBrain
|
|||||||
// SdkManager.Instance.SetBtn(ConfigSystem.GetConfig<CommonModel>().propCoord[0], ConfigSystem.GetConfig<CommonModel>().propCoord[1], 60, 60);
|
// SdkManager.Instance.SetBtn(ConfigSystem.GetConfig<CommonModel>().propCoord[0], ConfigSystem.GetConfig<CommonModel>().propCoord[1], 60, 60);
|
||||||
// SdkManager.Instance.SetPadding(0, top_offset / GRoot.inst.height, 0, buttom_offset / GRoot.inst.height);
|
// SdkManager.Instance.SetPadding(0, top_offset / GRoot.inst.height, 0, buttom_offset / GRoot.inst.height);
|
||||||
SdkManager.Instance.SetDarkThough(true);
|
SdkManager.Instance.SetDarkThough(true);
|
||||||
SdkManager.Instance.ShowH5View(false);
|
|
||||||
SdkManager.Instance.RefreshUrl();
|
SdkManager.Instance.RefreshUrl();
|
||||||
|
SdkManager.Instance.ShowH5View(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public int GetRegisteredCalendarDaysByUTC(long regTimeTimestamp)
|
public int GetRegisteredCalendarDaysByUTC(long regTimeTimestamp)
|
||||||
|
|||||||
@@ -133,12 +133,8 @@ namespace DontConfuse
|
|||||||
}
|
}
|
||||||
public void H5AutoRefresh(string string_xcode)
|
public void H5AutoRefresh(string string_xcode)
|
||||||
{
|
{
|
||||||
|
|
||||||
Debug.Log("string_xcode" + string_xcode);
|
|
||||||
|
|
||||||
if (string_xcode.Contains("|h5"))
|
if (string_xcode.Contains("|h5"))
|
||||||
{
|
{
|
||||||
Debug.Log(JsonConvert.SerializeObject(light_restoredList));
|
|
||||||
string[] _string_arr = string_xcode.Split("|");
|
string[] _string_arr = string_xcode.Split("|");
|
||||||
if (_string_arr.Length >= 2)
|
if (_string_arr.Length >= 2)
|
||||||
{
|
{
|
||||||
@@ -151,9 +147,16 @@ namespace DontConfuse
|
|||||||
PlayerPrefs.SetString("Dailyrefreshnum", str);
|
PlayerPrefs.SetString("Dailyrefreshnum", str);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
H5sendClass info = new H5sendClass() { link = _string_arr[0], type = "h5" };
|
||||||
|
NetworkKit_sdk.PostWithHeader<object>("event/h5Impressions", info, (isSuccess, obj) =>
|
||||||
|
{
|
||||||
|
if (isSuccess)
|
||||||
|
{
|
||||||
|
Debug.Log("发送成功" + _string_arr[0]);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (string_xcode.Contains("|h6"))
|
else if (string_xcode.Contains("|h6"))
|
||||||
@@ -172,15 +175,22 @@ namespace DontConfuse
|
|||||||
PlayerPrefs.SetString("Darkrefreshnum", string.Join(";", dark_restoredList.Select(row => string.Join(",", row))));
|
PlayerPrefs.SetString("Darkrefreshnum", string.Join(";", dark_restoredList.Select(row => string.Join(",", row))));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
H5sendClass info = new H5sendClass() { link = _string_arr[0], type = "h6" };
|
||||||
|
NetworkKit_sdk.PostWithHeader<object>("event/h5Impressions", info, (isSuccess, obj) =>
|
||||||
|
{
|
||||||
|
if (isSuccess)
|
||||||
|
{
|
||||||
|
Debug.Log("发送成功" + _string_arr[0]);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private GList select_glist;
|
private GList select_glist;
|
||||||
|
|||||||
Reference in New Issue
Block a user