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

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

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

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

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

@ -23,8 +23,6 @@ class TextUtils {
} }
static bool verifyPhone(phone) { static bool verifyPhone(phone) {
return new RegExp( return new RegExp("^^1\\d{10}\$").hasMatch(phone);
"^^((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);
} }
} }

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

Loading…
Cancel
Save