线上域名修改

This commit is contained in:
2026-01-16 17:25:52 +08:00
parent 5722e3ace0
commit edbacc502b
3 changed files with 22 additions and 15 deletions

View File

@@ -8,11 +8,11 @@ class AppTheme {
static const Color themeColor = Color(0xFF0c83c3);
//是否开放域名切换
static const bool is_show_host = true;
static const bool is_show_host = false;
//http://192.168.110.222:8080/
//http://192.168.110.44:8080/
static String test_service_url = "https://beta-esg.api.lnh2e.com/";
static String test_service_url = "http://47.101.201.13:8443/api/";
static const String release_service_url = "";
//加氢站相关查询

View File

@@ -15,7 +15,7 @@ void main() async {
WidgetsFlutterBinding.ensureInitialized();
WidgetsBinding widgetsBinding = await init(
isDebug: true,
isDebug: false,
logTag: '小羚羚',
supportedLocales: [Locale('zh', 'CN')],
);
@@ -31,7 +31,7 @@ void main() async {
// 设计稿尺寸 单位dp
designSize: const Size(390, 844),
// Getx Log
enableLog: true,
enableLog: false,
// 默认的跳转动画
defaultTransition: Transition.rightToLeft,
// 主题模式
@@ -74,6 +74,9 @@ void initHttpSet() {
// 设置全局响应处理器
HttpService.to.setOnResponseHandler((response) async {
try {
if (response.data == null) {
return '服务繁忙,稍后重试';
}
final baseModel = BaseModel.fromJson(response.data);
if (baseModel.code == 0 || baseModel.code == 200) {

View File

@@ -208,18 +208,22 @@ class _LoginPageState extends State<LoginPage> with SingleTickerProviderStateMix
addAlias(phone);
//登录后查询已绑定车辆信息
var carInfo = await HttpService.to.get(
"appointment/driver/getTruckInfoByDriver?phone=$phone",
);
if (carInfo != null) {
var carInforesult = BaseModel.fromJson(carInfo.data);
if (carInforesult.data != null) {
final vehicle = VehicleInfo.fromJson(
carInforesult.data as Map<String, dynamic>,
);
//保存使用
await StorageService.to.saveVehicleInfo(vehicle);
try {
var carInfo = await HttpService.to.get(
"appointment/driver/getTruckInfoByDriver?phone=$phone",
);
if (carInfo != null) {
var carInforesult = BaseModel.fromJson(carInfo.data);
if (carInforesult.data != null) {
final vehicle = VehicleInfo.fromJson(
carInforesult.data as Map<String, dynamic>,
);
//保存使用
await StorageService.to.saveVehicleInfo(vehicle);
}
}
} catch (e) {
Logger.d("暂时不处理 查询车辆信息失败的情况");
}
//页面操作