钻石充值,半屏
This commit is contained in:
@@ -19,6 +19,7 @@ enum ToFlutterAppEnum {
|
||||
toRecharge('toRecharge'),
|
||||
playing('playing'),
|
||||
toRedDiamond('toRedDiamond'),
|
||||
toHalfRecharge('toHalfRecharge'),
|
||||
gameType('gameType'),
|
||||
jumpToH5('jumpToH5'),
|
||||
toHomepage('toHomepage'),
|
||||
@@ -389,7 +390,8 @@ class FlutterBridge {
|
||||
String googleProductId,
|
||||
String iosProductId, {
|
||||
otherUserId = '',
|
||||
}) => sendToFlutter(ToFlutterAppEnum.toMonthCardPay.code, {
|
||||
}) =>
|
||||
sendToFlutter(ToFlutterAppEnum.toMonthCardPay.code, {
|
||||
'googleProductId': googleProductId,
|
||||
'iosProductId': iosProductId,
|
||||
'otherUserId': otherUserId,
|
||||
@@ -403,7 +405,8 @@ class FlutterBridge {
|
||||
required String activityId, // 活动id
|
||||
required bool needShareReport, // 是否需要上报分享数据
|
||||
ShareCardModel? shareCardModel, // 分享上方卡片 数据,参考客户端参数
|
||||
}) => sendToFlutter(ToFlutterAppEnum.share.code, {
|
||||
}) =>
|
||||
sendToFlutter(ToFlutterAppEnum.share.code, {
|
||||
"activityId": activityId,
|
||||
"shareReportKey": needShareReport ? "ActivityShared" : "",
|
||||
...shareCardModel?.toJson() ?? {},
|
||||
@@ -424,7 +427,8 @@ class FlutterBridge {
|
||||
void taskToWebViewPage({
|
||||
required String linkUrl,
|
||||
required String activityId,
|
||||
}) => sendToFlutter(ToFlutterAppEnum.showToWebViewPage.code, {
|
||||
}) =>
|
||||
sendToFlutter(ToFlutterAppEnum.showToWebViewPage.code, {
|
||||
"linkUrl": linkUrl,
|
||||
"activityId": activityId,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user