安卓返回桌面的弹窗,按钮文案与功能不一致

手机号输入不做号段限制
售后详情页,“查看退货地址”改为“上传退货单号”
恢复开发票功能
1.3.38-dev+231
master
laiiihz 5 years ago
parent 7bf054b2be
commit 23f56c2b2d

@ -284,7 +284,7 @@ class _HomePageState extends BaseStoreState<HomePage>
items: ["取消", "确认"],
listener: (index) {
switch (index) {
case 0:
case 1:
AndroidBackTop.backDeskTop();
}
Alert.dismiss(context);

@ -114,19 +114,19 @@ class _OrderCenterPageState extends BaseStoreState<OrderCenterPage>
appBackground: Colors.white,
elevation: 0,
actions: [
// MaterialButton(
// minWidth: rSize(74),
// onPressed: () {
// AppRouter.push(context, RouteName.USER_INVOICE);
// },
// child: Text(
// '开发票',
// style: TextStyle(
// color: AppColor.blackColor,
// fontSize: ScreenAdapterUtils.setSp(14),
// ),
// ),
// ),
MaterialButton(
minWidth: rSize(74),
onPressed: () {
AppRouter.push(context, RouteName.USER_INVOICE);
},
child: Text(
'开发票',
style: TextStyle(
color: AppColor.blackColor,
fontSize: ScreenAdapterUtils.setSp(14),
),
),
),
],
),
body: _newBuildBody(),

@ -428,7 +428,7 @@ class _OrderReturnStatusPageState
borderRadius: BorderRadius.all(Radius.circular(3)),
),
child: Text(
'查看退货地址',
'上传退货单号',
style: TextStyle(
fontWeight: FontWeight.w400,
color: Colors.white,

@ -23,8 +23,6 @@ class TextUtils {
}
static bool verifyPhone(phone) {
return new RegExp(
"^^((13[0-9])|(14[5,7])|(15[0-3,5-9])|(17[0,3,5-8])|(18[0-9])|166|198|199|(147))\\d{8}\$")
.hasMatch(phone);
return new RegExp("^^1\\d{10}\$").hasMatch(phone);
}
}

@ -2,7 +2,7 @@ name: recook
description: Recook Market App.
publish_to: "none"
version: 1.3.35-dev+228
version: 1.3.38-dev+231
environment:
sdk: ">=2.10.0 <3.0.0"

Loading…
Cancel
Save