44 lines
1.8 KiB
Dart
44 lines
1.8 KiB
Dart
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]
|
||
];
|
||
}
|