You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

484 lines
16 KiB

3 years ago
import 'package:dio/dio.dart';
3 years ago
import 'package:flutter/cupertino.dart';
3 years ago
import 'package:flutter/gestures.dart';
3 years ago
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
3 years ago
import 'package:flutter_swiper/flutter_swiper.dart';
3 years ago
import 'package:huixiang/generated/l10n.dart';
import 'package:huixiang/retrofit/data/activity.dart';
3 years ago
import 'package:huixiang/retrofit/data/base_data.dart';
3 years ago
import 'package:huixiang/retrofit/data/findMiNiGroupList.dart';
3 years ago
import 'package:huixiang/retrofit/data/order_info.dart';
3 years ago
import 'package:huixiang/retrofit/data/store_info.dart';
3 years ago
import 'package:huixiang/retrofit/min_api.dart';
3 years ago
import 'package:huixiang/retrofit/retrofit_api.dart';
3 years ago
import 'package:huixiang/store/store_view/shop_car.dart';
import 'package:huixiang/store/store_view/shop_goods.dart';
3 years ago
import 'package:huixiang/store/store_view/store_activity.dart';
3 years ago
import 'package:huixiang/store/store_view/store_info.dart';
3 years ago
import 'package:huixiang/store/store_view/store_order_list.dart';
3 years ago
import 'package:huixiang/union/union_view/union_coupon.dart';
import 'package:huixiang/union/union_view/vip.dart';
3 years ago
import 'package:huixiang/utils/font_weight.dart';
3 years ago
import 'package:huixiang/view_widget/classic_header.dart';
3 years ago
import 'package:huixiang/view_widget/custom_image.dart';
3 years ago
import 'package:huixiang/view_widget/my_tab.dart';
3 years ago
import 'package:huixiang/view_widget/round_button.dart';
3 years ago
import 'package:pull_to_refresh/pull_to_refresh.dart';
import 'package:shared_preferences/shared_preferences.dart';
class StoreOrderPage extends StatefulWidget {
final Map arguments;
3 years ago
StoreOrderPage({this.arguments});
3 years ago
@override
State<StatefulWidget> createState() {
return _StoreOrderPage();
}
}
class _StoreOrderPage extends State<StoreOrderPage>
3 years ago
with TickerProviderStateMixin, AutomaticKeepAliveClientMixin {
3 years ago
TabController tabcontroller;
ApiService apiService;
3 years ago
MinApiService minService;
3 years ago
StoreInfo storeInfo;
3 years ago
List<Activity> activitys;
3 years ago
RefreshController refreshController;
3 years ago
List<Widget> _widgetOptions;
3 years ago
int allCount = 0;
double allPrice = 0;
3 years ago
3 years ago
ScrollController controller = ScrollController();
3 years ago
@override
void initState() {
super.initState();
3 years ago
if (tabcontroller == null)
tabcontroller = TabController(
length: 2,
vsync: this,
);
_widgetOptions = [
3 years ago
StoreOrderListPage(widget.arguments, activitys, storeInfo, controller,
(ac, ap) {
setState(() {
allCount = ac;
allPrice = ap;
});
}),
3 years ago
3 years ago
///星店活动,
3 years ago
StoreActivity(
widget.arguments,
3 years ago
activitys,
3 years ago
),
3 years ago
];
3 years ago
queryStoreInfo();
}
3 years ago
/// 查询店铺信息
3 years ago
queryStoreInfo() async {
final SharedPreferences value = await SharedPreferences.getInstance();
apiService = ApiService(
Dio(),
context: context,
token: value.getString('token'),
);
BaseData baseData = await apiService
.queryStoreInfo(widget.arguments["id"])
.catchError((error) {
3 years ago
// refreshController.refreshFailed();
3 years ago
});
if (baseData != null && baseData.isSuccess) {
3 years ago
// refreshController.refreshCompleted();
3 years ago
storeInfo = StoreInfo.fromJson(baseData.data);
3 years ago
activitys = storeInfo.informationVOPageVO.list
.map((e) => Activity.fromJson(e))
.toList();
3 years ago
if (mounted) {
setState(() {});
}
}
}
@override
Widget build(BuildContext context) {
3 years ago
return Stack(
3 years ago
children: [
3 years ago
Positioned(
left: 0,
right: 0,
top: 0,
bottom: 54.h,
3 years ago
child: DefaultTabController(
length: 2,
child: SmartRefresher(
3 years ago
controller: refreshController =
RefreshController(initialRefresh: false),
3 years ago
enablePullDown: true,
enablePullUp: false,
header: MyHeader(),
physics: BouncingScrollPhysics(),
onRefresh: () {
3 years ago
queryStoreInfo();
3 years ago
},
child: NestedScrollView(
3 years ago
controller: controller,
dragStartBehavior: DragStartBehavior.start,
3 years ago
headerSliverBuilder:
(BuildContext context, bool innerBoxIsScrolled) {
3 years ago
return [
SliverOverlapAbsorber(
3 years ago
handle: NestedScrollView.sliverOverlapAbsorberHandleFor(
context),
3 years ago
sliver: SliverAppBar(
3 years ago
expandedHeight: (storeInfo != null &&
storeInfo.couponVOList != null)
? 425.h
: 365.h,
3 years ago
floating: false,
snap: false,
3 years ago
pinned: true,
3 years ago
stretch: false,
3 years ago
leading: GestureDetector(
onTap: () {
Navigator.of(context).pop();
},
child: Container(
alignment: Alignment.centerRight,
margin: EdgeInsets.only(left: 10),
padding: EdgeInsets.all(6),
child: Icon(
Icons.arrow_back_ios,
color: Colors.black,
size: 24,
),
),
),
3 years ago
flexibleSpace: FlexibleSpaceBar(
3 years ago
title: Title(
controller,
storeInfo != null ? storeInfo.storeName : '',
),
3 years ago
collapseMode: CollapseMode.pin,
stretchModes: [
StretchMode.zoomBackground,
StretchMode.fadeTitle,
StretchMode.blurBackground,
],
3 years ago
background: Stack(
children: [
Positioned(
3 years ago
child: Column(
children: [
3 years ago
// Image.asset(
// "assets/image/share_image_bg.png",
// fit: BoxFit.cover,
// width: MediaQuery.of(context).size.width,
// height: 180.h,
// ),
buildSwiper(),
3 years ago
Expanded(
child: Container(
color: Colors.transparent,
),
flex: 1,
),
],
),
top: 0,
bottom: 0,
left: 0,
right: 0,
),
Positioned(
child: Container(
child: Column(
children: [
///门店信息
3 years ago
StoreInfoView(storeInfo),
3 years ago
3 years ago
///门店对应优惠券
if (storeInfo != null &&
storeInfo.couponVOList != null)
UnionCoupon(
storeInfo,
(a) {},
coupon: true,
3 years ago
),
3 years ago
SizedBox(
height: 8,
),
///门店对应VIP信息
Vip(storeInfo, () {}, false),
],
3 years ago
),
),
3 years ago
top: 110.h,
bottom: 0,
left: 0,
right: 0,
),
],
3 years ago
),
3 years ago
),
backgroundColor: Color(0x33FAFAFA),
centerTitle: false,
elevation: 0,
bottom: PreferredSize(
preferredSize: Size(
MediaQuery.of(context).size.width,
38,
),
child: Container(
padding: EdgeInsets.symmetric(horizontal: 10.w),
width: MediaQuery.of(context).size.width,
child: TabBar(
controller: tabcontroller,
automaticIndicatorColorAdjustment: true,
isScrollable: true,
indicatorWeight: 1,
indicatorColor: Color(0xFFFAFAFA),
labelPadding:
EdgeInsets.only(left: 8.w, right: 8.w),
indicatorSize: TabBarIndicatorSize.label,
unselectedLabelStyle: TextStyle(
fontSize: 15.sp,
fontWeight: FontWeight.w400,
),
labelStyle: TextStyle(
color: Colors.black,
fontSize: 18.sp,
fontWeight: FontWeight.bold,
3 years ago
),
3 years ago
labelColor: Colors.black,
tabs: [
MyTab(text: S.current.diancan),
MyTab(text: S.current.xindianhuodong),
],
3 years ago
),
),
),
),
3 years ago
),
];
},
body: TabBarView(
physics: BouncingScrollPhysics(),
children: _widgetOptions,
controller: tabcontroller,
3 years ago
),
),
),
),
3 years ago
Positioned(
bottom: 0,
left: 0,
right: 0,
child: Stack(
alignment: Alignment.bottomLeft,
children: [
Container(
height: 54.h,
color: Color(0xFFFAFAFA),
child: Row(
children: [
Spacer(),
Text(
S.of(context).heji,
style: TextStyle(
fontSize: 12.sp,
fontWeight: MyFontWeight.regular,
color: Colors.black,
),
),
Text(
3 years ago
"" + allPrice.toString(),
3 years ago
style: TextStyle(
fontSize: 20.sp,
fontWeight: MyFontWeight.medium,
color: Color(0xFF32A060),
),
),
Spacer(),
GestureDetector(
3 years ago
onTap: () {
3 years ago
Navigator.of(context).pushNamed(
'/router/settlement',
3 years ago
arguments: {},
3 years ago
);
},
3 years ago
child: RoundButton(
3 years ago
width: 103.w,
height: 54.h,
text: S.current.jiesuan,
textColor: Colors.white,
fontWeight: MyFontWeight.regular,
backgroup: Color(0xFF32A060),
3 years ago
radius: 0,
3 years ago
fontSize: 16.sp,
padding: EdgeInsets.symmetric(vertical: 5.h),
),
),
],
),
),
3 years ago
Stack(
children: [
3 years ago
InkWell(
3 years ago
onTap: () {
setState(() {
3 years ago
showShoppingCart();
3 years ago
});
},
child: Image.asset(
3 years ago
"assets/image/shopp.png",
3 years ago
width: 88,
height: 88,
3 years ago
fit: BoxFit.fitWidth,
3 years ago
),
),
Positioned(
right: 15,
top: 14,
child: RoundButton(
width: 17,
height: 17,
3 years ago
text: allCount.toString(),
3 years ago
textColor: Colors.white,
fontWeight: MyFontWeight.regular,
backgroup: Color(0xFF32A060),
fontSize: 12.sp,
radius: 100,
),
)
],
),
3 years ago
],
),
)
3 years ago
],
);
}
3 years ago
Widget buildSwiper() {
return Container(
width: double.infinity,
height: 180.h,
child: Swiper(
pagination: SwiperPagination(
alignment: Alignment.bottomCenter,
builder: DotSwiperPaginationBuilder(
size: 8.w,
activeSize: 8.w,
space: 5.w,
activeColor: Colors.white,
color: Colors.white.withAlpha(76),
),
),
itemBuilder: (context, position) {
return Container(
child: MImage(
(storeInfo != null &&
storeInfo.bannerList != null &&
position < storeInfo.bannerList.length)
? storeInfo.bannerList[position].imgUrl
: "",
fit: BoxFit.cover,
3 years ago
radius: BorderRadius.zero,
3 years ago
errorSrc: "assets/image/default_2_1.png",
fadeSrc: "assets/image/default_2_1.png",
),
);
},
itemCount: (storeInfo != null && storeInfo.bannerList != null)
? storeInfo.bannerList.length
: 1),
);
}
List<ProductList> productLists = [];
3 years ago
///购物车弹窗
showShoppingCart() {
showModalBottomSheet(
context: context,
backgroundColor: Colors.transparent,
builder: (context) {
return StatefulBuilder(builder: (context1, state) {
3 years ago
return ShopCar(productLists);
3 years ago
});
},
);
}
3 years ago
Widget shoppGoodsItem(ProductList pro, position) {
3 years ago
return ShopGoods(pro, position);
3 years ago
}
3 years ago
@override
bool get wantKeepAlive => true;
3 years ago
}
3 years ago
class Title extends StatefulWidget {
final ScrollController controller;
final String title;
Title(this.controller, this.title);
@override
State<StatefulWidget> createState() {
return _Title();
}
}
class _Title extends State<Title> {
double alpha = 0;
@override
void initState() {
super.initState();
widget.controller.addListener(() {
double maxScrollExtent = widget.controller.position.maxScrollExtent;
double alphaHeight = (kToolbarHeight) / 2;
double alphaProgress = maxScrollExtent - widget.controller.offset;
double alphatemp = 0;
if (alphaProgress <= 1) {
alphatemp = 1;
} else if (alphaProgress <= alphaHeight) {
3 years ago
alphatemp = (((alphaHeight - alphaProgress) / alphaHeight) > 0.5) ? 1 : 0;
3 years ago
} else {
alphatemp = 0;
}
if (alpha != alphatemp && mounted) {
alpha = alphatemp;
3 years ago
print("object: $alpha");
3 years ago
setState(() {});
}
});
}
@override
Widget build(BuildContext context) {
return Container(
margin: EdgeInsets.only(bottom: 38),
child: Text(
widget.title ?? "",
style: TextStyle(
color: Colors.black.withOpacity(alpha),
fontWeight: FontWeight.bold,
fontSize: 18.sp,
),
),
);
}
}