36 lines
1.5 KiB
Dart
36 lines
1.5 KiB
Dart
class CommonVariables {
|
||
static bool isNetWorkOn = false;
|
||
static bool test = false;
|
||
static String supabaseUrl = "https://mht1.he-info.cn";
|
||
// static String wsUrl = "ws://mht-server.he-info.cn/ws";
|
||
// static String apiUrl = "https://mht-server.he-info.cn";
|
||
// static String shoph5Url = "https://mht-web.he-info.cn";
|
||
// static String supabaseUrl = "https://zhmht.swes.com.cn:3443";
|
||
// static String wsUrl = "wss://zhmht.swes.com.cn:8089/ws";
|
||
// static String apiUrl = "https://zhmht.swes.com.cn:8089";
|
||
static String wsUrl = "ws://192.168.1.129:8088/ws";
|
||
static String apiUrl = "http://192.168.1.129:8088";
|
||
static String shoph5Url = "https://zhmht.swes.com.cn:1443";
|
||
static String sleepUrl = "https://alltoone.he-info.cn";
|
||
static String efKey = "ef_key";
|
||
|
||
// // android app 内部更新地址
|
||
// static String androidInternalUpgradeUrl = "http://192.168.0.112:1234";
|
||
|
||
// 企业微信客服拉起的url地址
|
||
static String wxKfUrl = "https://work.weixin.qq.com/kfid/kfc7d2337b9c07b1269";
|
||
// 企业微信ID
|
||
static String wxCorpId = "ww51feda6026280cd0";
|
||
//ICP备案号
|
||
static String ICPRightCode = "皖ICP备2024068219号-1A";
|
||
//公司名称
|
||
static String enterpriseName = "合肥眠花糖家具有限责任公司";
|
||
//备案时间
|
||
static String ICPTime = "2022-2025";
|
||
|
||
// 分享复制文字信息
|
||
static String shareText = "您的朋友邀请您使用《智慧眠花糖》APP,请复制后面链接在浏览器中打开! " +
|
||
shoph5Url +
|
||
"/#/pages/download/download";
|
||
}
|