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.

209 lines
5.9 KiB

import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
import 'package:akuCommunity/utils/screenutil.dart';
import 'package:akuCommunity/base/base_style.dart';
class RefundDetails extends StatelessWidget {
final double statusHeight;
const RefundDetails({Key key, this.statusHeight}) : super(key: key);
Container _containerHeader() {
return Container(
width: double.infinity,
color: Color(0xffffd000),
padding: EdgeInsets.only(
4 years ago
top: 44.w,
bottom: 44.w,
left: 33.w,
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'退款成功',
style: TextStyle(
fontWeight: FontWeight.w600,
fontSize: BaseStyle.fontSize32,
color: ktextPrimary,
),
),
4 years ago
SizedBox(height: 10.w),
Text(
'2020年7月8日 13:28',
style: TextStyle(
fontSize: BaseStyle.fontSize24,
color: ktextPrimary,
),
),
],
),
);
}
Container _containerPrice() {
return Container(
color: Color(0xffffffff),
padding: EdgeInsets.only(
4 years ago
top: 24.w,
bottom: 24.w,
left: 33.w,
right: 32.w,
),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
'退款总金额',
style: TextStyle(
fontSize: BaseStyle.fontSize24,
color: ktextPrimary,
),
),
Text(
'¥1123.60',
style: TextStyle(
fontWeight: FontWeight.w600,
fontSize: BaseStyle.fontSize28,
color: ktextPrimary,
),
),
],
),
);
}
Container _containerContent() {
return Container(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
color: Color(0xffffffff),
width: double.infinity,
padding: EdgeInsets.only(
4 years ago
top: 25.w,
bottom: 22.w,
left: 33.w,
),
child: Text(
'退款信息',
style: TextStyle(
fontSize: BaseStyle.fontSize24,
color: ktextPrimary,
),
),
),
Container(
color: Color(0xfff2f2f2),
padding: EdgeInsets.only(
4 years ago
top: 30.w,
bottom: 24.w,
left: 33.w,
),
child: Row(
children: [
Image.asset(
'assets/example/tz1.png',
4 years ago
height: 120.w,
width: 120.w,
fit: BoxFit.fill,
),
4 years ago
SizedBox(width: 20.w),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
4 years ago
width: 544.w,
child: Text(
'轻便自由 男士针织休闲西装 全身羊毛修身意大利进口精致裁剪',
maxLines: 2,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontSize: BaseStyle.fontSize24,
color: BaseStyle.color999999,
),
),
),
4 years ago
SizedBox(height: 10.w),
Text(
'规格分类M 黑色',
style: TextStyle(
fontSize: BaseStyle.fontSize24,
color: BaseStyle.color999999,
),
),
],
),
],
),
),
Container(
color: Color(0xffffffff),
width: double.infinity,
padding: EdgeInsets.only(
4 years ago
top: 22.w,
left: 33.w,
bottom: 22.w,
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'退款原因:${'拍多/拍错/不想要'}',
style: TextStyle(
fontSize: BaseStyle.fontSize24,
color: BaseStyle.color999999,
),
),
4 years ago
SizedBox(height: 22.w),
Text(
'退款金额:${'¥1123.60'}',
style: TextStyle(
fontSize: BaseStyle.fontSize24,
color: BaseStyle.color999999,
),
),
4 years ago
SizedBox(height: 22.w),
Text(
'申请时间:${'2020-7-7 21:09'}',
style: TextStyle(
fontSize: BaseStyle.fontSize24,
color: BaseStyle.color999999,
),
),
4 years ago
SizedBox(height: 22.w),
Text(
'退款编号:${'8324982349230293'}',
style: TextStyle(
fontSize: BaseStyle.fontSize24,
color: BaseStyle.color999999,
),
),
],
),
),
],
),
);
}
@override
Widget build(BuildContext context) {
return SingleChildScrollView(
child: Container(
height:
MediaQuery.of(context).size.height - kToolbarHeight - statusHeight,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
_containerHeader(),
_containerPrice(),
4 years ago
SizedBox(height: 44.w),
_containerContent(),
],
),
),
);
}
}