提交 14af4c71 authored 作者: 张国庆's avatar 张国庆

feat:增加是否显示通知参数

上级 6b6cd3e8
......@@ -64,7 +64,8 @@ abstract class BaseMessageConfig
if (body.showType == '1') {
/// 首页公告
insertNotice(body);
} else if (body.showType == '2') {
} else if (body.showType == '2' &&
messageConfig.showInAppNotification == 1) {
/// 全局通知
insertNotification(body);
showNotification(context);
......
......@@ -6,17 +6,19 @@ class MessageConfig {
// websocket 连接地址
String webSocketUrl = "";
String inAppAccessKey = "";
String inAppAccessKey = ""; //应用消息参数
String functionKey = "";
String functionKey = ""; //websocket 需要
String companyNo = "";
String companyNo = ""; //公司编号
String productCode = "";
String productCode = ""; //产品标识
String userKey = "";
String userKey = ""; //用户唯一标识
String accessToken = "";
String accessToken = ""; //登录成功的token
int showInAppNotification = 0; // 是否应用内显示通知
BaseMessageConfig? messageManagement;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论