Files
tuiche/lib/common/util/CommonVariables.dart
2025-08-14 09:52:10 +08:00

44 lines
1.8 KiB
Dart
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import 'package:ef/ef.dart';
class CommonVariables {
static bool isNetWorkOn = false;
static String supabaseUrl = "https://zhmht.swes.com.cn:3443";
// 企业微信客服拉起的url地址
// static String wxKfUrl = "https://work.weixin.qq.com/kfid/kfcab6a07e8aac68945";
static String wxKfUrl = "https://work.weixin.qq.com/kfid/kfc7d2337b9c07b1269";
// 企业微信ID
// static String wxCorpId = "wwc17348c75dbde1dc";
static String wxCorpId = "ww51feda6026280cd0";
//ICP备案号
static String ICPRightCode = "皖ICP备2024068219号-1A";
//公司名称
static String enterpriseName = "合肥眠花糖家具有限责任公司";
//备案时间
static String ICPTime = "2019-2029";
static String shoph5Url = "https://zhmht.swes.com.cn:1443";
static Map<String, Function(dynamic)> callMap = {};
static const String weather_apiKey =
'40e23445cf0a29561af2b5b7d506a38b'; // 替换为你的 API 密钥
static String shareText = "您的朋友邀请您使用《智慧眠花糖》APP请复制后面链接在浏览器中打开 " +
shoph5Url +
"/#/pages/download/download";
List permissionInfo = [
["位置权限说明".tr, "获得位置信息,连接附近的蓝牙设备与推荐附近门店".tr],
["蓝牙权限说明".tr, "搜索链接附近的蓝牙设备".tr],
["附近设备权限说明".tr, "搜索链接附近的蓝牙设备".tr]
];
List locationpermissionInfo = [
["位置权限说明".tr, "获得位置信息以便获取天气情况".tr],
];
List bluetoothpermissionInfo = [
["位置权限说明".tr, "获得位置信息,连接附近的蓝牙设备".tr],
["蓝牙权限说明".tr, "搜索链接附近的蓝牙设备".tr],
["附近设备权限说明".tr, "搜索链接附近的蓝牙设备".tr]
];
}