线上域名修改
This commit is contained in:
@@ -8,11 +8,11 @@ class AppTheme {
|
|||||||
static const Color themeColor = Color(0xFF0c83c3);
|
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.222:8080/
|
||||||
//http://192.168.110.44: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 = "";
|
static const String release_service_url = "";
|
||||||
|
|
||||||
//加氢站相关查询
|
//加氢站相关查询
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ void main() async {
|
|||||||
WidgetsFlutterBinding.ensureInitialized();
|
WidgetsFlutterBinding.ensureInitialized();
|
||||||
|
|
||||||
WidgetsBinding widgetsBinding = await init(
|
WidgetsBinding widgetsBinding = await init(
|
||||||
isDebug: true,
|
isDebug: false,
|
||||||
logTag: '小羚羚',
|
logTag: '小羚羚',
|
||||||
supportedLocales: [Locale('zh', 'CN')],
|
supportedLocales: [Locale('zh', 'CN')],
|
||||||
);
|
);
|
||||||
@@ -31,7 +31,7 @@ void main() async {
|
|||||||
// 设计稿尺寸 单位:dp
|
// 设计稿尺寸 单位:dp
|
||||||
designSize: const Size(390, 844),
|
designSize: const Size(390, 844),
|
||||||
// Getx Log
|
// Getx Log
|
||||||
enableLog: true,
|
enableLog: false,
|
||||||
// 默认的跳转动画
|
// 默认的跳转动画
|
||||||
defaultTransition: Transition.rightToLeft,
|
defaultTransition: Transition.rightToLeft,
|
||||||
// 主题模式
|
// 主题模式
|
||||||
@@ -74,6 +74,9 @@ void initHttpSet() {
|
|||||||
// 设置全局响应处理器
|
// 设置全局响应处理器
|
||||||
HttpService.to.setOnResponseHandler((response) async {
|
HttpService.to.setOnResponseHandler((response) async {
|
||||||
try {
|
try {
|
||||||
|
if (response.data == null) {
|
||||||
|
return '服务繁忙,稍后重试';
|
||||||
|
}
|
||||||
final baseModel = BaseModel.fromJson(response.data);
|
final baseModel = BaseModel.fromJson(response.data);
|
||||||
if (baseModel.code == 0 || baseModel.code == 200) {
|
if (baseModel.code == 0 || baseModel.code == 200) {
|
||||||
|
|
||||||
|
|||||||
@@ -208,6 +208,7 @@ class _LoginPageState extends State<LoginPage> with SingleTickerProviderStateMix
|
|||||||
addAlias(phone);
|
addAlias(phone);
|
||||||
|
|
||||||
//登录后查询已绑定车辆信息
|
//登录后查询已绑定车辆信息
|
||||||
|
try {
|
||||||
var carInfo = await HttpService.to.get(
|
var carInfo = await HttpService.to.get(
|
||||||
"appointment/driver/getTruckInfoByDriver?phone=$phone",
|
"appointment/driver/getTruckInfoByDriver?phone=$phone",
|
||||||
);
|
);
|
||||||
@@ -221,6 +222,9 @@ class _LoginPageState extends State<LoginPage> with SingleTickerProviderStateMix
|
|||||||
await StorageService.to.saveVehicleInfo(vehicle);
|
await StorageService.to.saveVehicleInfo(vehicle);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} catch (e) {
|
||||||
|
Logger.d("暂时不处理 查询车辆信息失败的情况");
|
||||||
|
}
|
||||||
|
|
||||||
//页面操作
|
//页面操作
|
||||||
dismissLoading();
|
dismissLoading();
|
||||||
|
|||||||
Reference in New Issue
Block a user