Browse Source

ios 会员管理板块列表bug更改;

wr_2023_business
zsw 1 year ago
parent
commit
8761e5e94c
  1. 6
      ios/Runner.xcodeproj/project.pbxproj
  2. 6
      lib/business_system/home/vip/balance_change_record.dart
  3. 15
      lib/business_system/home/vip/bus_vip_list.dart
  4. 9
      lib/business_system/home/vip/vip_recharge_flow.dart

6
ios/Runner.xcodeproj/project.pbxproj

@ -619,7 +619,7 @@
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 6;
DEVELOPMENT_TEAM = YF3Q8DVP52;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
@ -822,7 +822,7 @@
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 6;
DEVELOPMENT_TEAM = YF3Q8DVP52;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
@ -916,7 +916,7 @@
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 6;
DEVELOPMENT_TEAM = YF3Q8DVP52;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (

6
lib/business_system/home/vip/balance_change_record.dart

@ -243,9 +243,8 @@ class _BalanceChangeRecord extends State<BalanceChangeRecord> {
iconHeight: 120.h,
margin: EdgeInsets.all(50.h),
)
: Padding(
padding: EdgeInsets.only(top: 16.h),
child: Expanded(
: Container(
padding:EdgeInsets.only(top: 16.h),
child: ListView.builder(
itemCount: records?.length ?? 0,
physics: BouncingScrollPhysics(),
@ -264,7 +263,6 @@ class _BalanceChangeRecord extends State<BalanceChangeRecord> {
);
},
),
),
))),
),
)),

15
lib/business_system/home/vip/bus_vip_list.dart

@ -126,9 +126,7 @@ class _BusVipList extends State<BusVipList> {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: Column(
return Column(
children: [
Container(
width: double.infinity,
@ -163,7 +161,7 @@ class _BusVipList extends State<BusVipList> {
children: [
Padding(
padding: EdgeInsets.only(
left: 20.w,top: 16.h
left: 20.w,top: 16.h,bottom: 16.h
),
child: Row(
children: [
@ -209,10 +207,7 @@ class _BusVipList extends State<BusVipList> {
iconHeight: 120.h,
margin: EdgeInsets.all(50.h),
)
: Padding(
padding: EdgeInsets.only(top: 16.h),
child: Expanded(
child: ListView.builder(
: ListView.builder(
itemCount: records?.length ?? 0,
physics: BouncingScrollPhysics(),
shrinkWrap: true,
@ -232,13 +227,11 @@ class _BusVipList extends State<BusVipList> {
position),
);
},
),
),
))),
],
)))),
],
));
);
}
///

9
lib/business_system/home/vip/vip_recharge_flow.dart

@ -163,7 +163,7 @@ class _VipRechargeFlow extends State<VipRechargeFlow> {
child: Column(
children: [
Padding(
padding: EdgeInsets.only(left: 20.w, top: 16.h),
padding: EdgeInsets.only(left: 20.w, top: 16.h,bottom: 16.h),
child: Row(
children: [
Container(
@ -208,10 +208,7 @@ class _VipRechargeFlow extends State<VipRechargeFlow> {
iconHeight: 120.h,
margin: EdgeInsets.all(50.h),
)
: Padding(
padding: EdgeInsets.only(top: 16.h),
child: Expanded(
child: ListView.builder(
: ListView.builder(
itemCount: records?.length ?? 0,
physics: BouncingScrollPhysics(),
shrinkWrap: true,
@ -231,8 +228,6 @@ class _VipRechargeFlow extends State<VipRechargeFlow> {
position),
);
},
),
),
))),
],
))),

Loading…
Cancel
Save