修改版本号,打包给欧阳测试

This commit is contained in:
魏少阳 2024-04-03 09:51:26 +08:00
parent 95769e6ca8
commit 990f2033c2
5 changed files with 36 additions and 29 deletions

View File

@ -180,9 +180,10 @@ class _CheckingInDetailPageState extends State<CheckingInDetailPage> {
child: Text(
array[index],
style: TextStyle(
color: index == 5 || index == 6
? const Color(0xFFC4C8D0)
: const Color(0xFF3C3E43),
color:
// index == 5 || index == 6
// ? const Color(0xFFC4C8D0) :
const Color(0xFF3C3E43),
fontSize: 26.sp),
));
},
@ -212,14 +213,14 @@ class _CheckingInDetailPageState extends State<CheckingInDetailPage> {
Color backColor = Colors.white;
// Color textColor = const Color(0xFFFFFFFF);
if(_datas[index].workType == "1"){
backColor = const Color(0xFFE83523);
// textColor = Colors.white;
//
backColor = const Color(0xFFE83523);
}else if( _datas[index].workType == "2"){
// 退
backColor = const Color(0xFFEDB459);
// textColor = Colors.white;
}else if( _datas[index].workType == "3"){
//
backColor = const Color(0xFF666666);
// textColor = Colors.white;
}
return GestureDetector(
onTap: () {
@ -263,17 +264,13 @@ class _CheckingInDetailPageState extends State<CheckingInDetailPage> {
? _datas[index].day.toString()
: "",
textAlign: TextAlign.center,
//
//
style: (int.parse(_datas[index].workType!) > 0)
? TextStyle(
fontSize: 24.sp, color: const Color(0xFFFFFFFF))
: (index % 7 == 5 || index % 7 == 6
? TextStyle(
fontSize: 24.sp,
color: const Color(0xFFC4C8D0))
: TextStyle(
fontSize: 24.sp,
color: const Color(0xFF3C3E43))),
: TextStyle(
fontSize: 24.sp,
color: Colors.black),
),
),
),
@ -336,7 +333,7 @@ class _CheckingInDetailPageState extends State<CheckingInDetailPage> {
return Column(
children: [
Container(
height: 70.h,
// height: 70.h,
padding:
EdgeInsets.only(left: 20.w, right: 10.w, top: 20.w, bottom: 20.w),
child: Row(

View File

@ -20,6 +20,10 @@ class RecipientInformationLogic extends BaseGetXController{
);
if(entity.errorCode!.codeIsSuccessful){
action(entity.data!);
}else {
if(entity.errorCode! == 425){
showToast(entity.errorMsg!);
}
}
}
@ -32,6 +36,7 @@ class RecipientInformationLogic extends BaseGetXController{
);
if(entity.errorCode!.codeIsSuccessful){
Get.back(result: "scuess");
eventBus.fire(RefreshLockListInfoDataEvent());
}
}

View File

@ -227,12 +227,13 @@ class _RecipientInformationPageState extends State<RecipientInformationPage> {
showCupertinoAlertDialog(context, v);
});
} else {
Get.toNamed(Routers.selectBranchPage, arguments: {
"idList": state.idList.value,
"countryCode": state.countryCode.value,
"number": state.numberController.text,
"isFromType": state.isFromType.value,
});
logic.showToast("暂不支持跨平台转移,敬请期待");
// Get.toNamed(Routers.selectBranchPage, arguments: {
// "idList": state.idList.value,
// "countryCode": state.countryCode.value,
// "number": state.numberController.text,
// "isFromType": state.isFromType.value,
// });
}
} else {
//
@ -241,12 +242,14 @@ class _RecipientInformationPageState extends State<RecipientInformationPage> {
showCupertinoAlertDialog(context, v);
});
} else {
Get.toNamed(Routers.selectBranchPage, arguments: {
"idList": state.idList.value,
"countryCode": state.countryCode.value,
"number": state.numberController.text,
"isFromType": state.isFromType.value
});
logic.showToast("暂不支持跨平台转移,敬请期待");
// Get.toNamed(Routers.selectBranchPage, arguments: {
// "idList": state.idList.value,
// "countryCode": state.countryCode.value,
// "number": state.numberController.text,
// "isFromType": state.isFromType.value
// });
}
}
});

View File

@ -40,6 +40,7 @@ class BaseProvider extends GetConnect with Api {
query: query,
decoder: decoder,
uploadProgress: uploadProgress);
// print('res.body======>${res.body}');
if (res.body == null) {
if (EasyLoading.isShow) EasyLoading.dismiss(animation: true);
var rs = {

View File

@ -24,7 +24,8 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# 1.0.20+2024032102修复Apple Store App Tracking Transparency权限问题
# 1.0.21+2024032801同为斯凯环境也区分删减版和完整版通过main_sky_lite.dart/main_sky_full.dart切换
# 1.0.21+20240328021、打包斯凯、预发布环境给欧阳测试
version: 1.0.21+20240401
# 1.0.22+202404031、打包预发布环境给欧阳测试
version: 1.0.22+20240403
environment:
sdk: '>=2.12.0 <3.0.0'