|
@@ -667,17 +667,6 @@ class _SendExpressPageState extends State < SendExpressPage > with AutomaticKeep
|
|
|
),
|
|
),
|
|
|
),
|
|
),
|
|
|
onTap: () {
|
|
onTap: () {
|
|
|
- showDialog < Null > (
|
|
|
|
|
- context: context, //BuildContext对象
|
|
|
|
|
- barrierDismissible: false,
|
|
|
|
|
- builder: (BuildContext context) {
|
|
|
|
|
- return SendDialog( //调用对话框
|
|
|
|
|
- childCallback: (val) {
|
|
|
|
|
-
|
|
|
|
|
- },
|
|
|
|
|
- );
|
|
|
|
|
- });
|
|
|
|
|
- return;
|
|
|
|
|
if(!submitStatus){
|
|
if(!submitStatus){
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
@@ -798,7 +787,9 @@ class _SendExpressPageState extends State < SendExpressPage > with AutomaticKeep
|
|
|
builder: (BuildContext context) {
|
|
builder: (BuildContext context) {
|
|
|
return SendDialog( //调用对话框
|
|
return SendDialog( //调用对话框
|
|
|
childCallback: (val) {
|
|
childCallback: (val) {
|
|
|
-
|
|
|
|
|
|
|
+ if(!val){
|
|
|
|
|
+ //跳转
|
|
|
|
|
+ }
|
|
|
},
|
|
},
|
|
|
);
|
|
);
|
|
|
});
|
|
});
|