张萌 4 years ago
commit c55a994f3f

@ -1,8 +1,10 @@
import 'package:akuCommunity/constants/api.dart'; import 'package:akuCommunity/constants/api.dart';
import 'package:akuCommunity/model/manager/suggestion_or_complain_model.dart'; import 'package:akuCommunity/model/manager/suggestion_or_complain_model.dart';
import 'package:akuCommunity/pages/things_page/widget/bee_list_view.dart'; import 'package:akuCommunity/pages/things_page/widget/bee_list_view.dart';
import 'package:akuCommunity/ui/manager/advice/new_advice_page.dart';
import 'package:akuCommunity/widget/bee_scaffold.dart'; import 'package:akuCommunity/widget/bee_scaffold.dart';
import 'package:akuCommunity/utils/headers.dart'; import 'package:akuCommunity/utils/headers.dart';
import 'package:akuCommunity/widget/buttons/bottom_button.dart';
import 'package:akuCommunity/widget/tab_bar/bee_tab_bar.dart'; import 'package:akuCommunity/widget/tab_bar/bee_tab_bar.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_easyrefresh/easy_refresh.dart'; import 'package:flutter_easyrefresh/easy_refresh.dart';
@ -12,13 +14,6 @@ enum AdviceType {
COMPLAIN, COMPLAIN,
} }
enum _adviceInnerType {
SUGGESTION,
QUESTION,
COMPLAIN,
PRAISE,
}
class AdvicePage extends StatefulWidget { class AdvicePage extends StatefulWidget {
final AdviceType type; final AdviceType type;
AdvicePage({Key key, @required this.type}) : super(key: key); AdvicePage({Key key, @required this.type}) : super(key: key);
@ -64,6 +59,7 @@ class _AdvicePageState extends State<AdvicePage> with TickerProviderStateMixin {
return index == 0 ? 4 : 3; return index == 0 ? 4 : 3;
break; break;
} }
return 0;
} }
@override @override
@ -108,6 +104,10 @@ class _AdvicePageState extends State<AdvicePage> with TickerProviderStateMixin {
); );
}).toList(), }).toList(),
), ),
bottomNavi: BottomButton(
onPressed: NewAdvicePage(type: widget.type).to,
child: Text('新增'),
),
); );
} }
} }

@ -0,0 +1,117 @@
import 'package:akuCommunity/const/resource.dart';
import 'package:akuCommunity/ui/manager/advice/advice_page.dart';
import 'package:akuCommunity/widget/bee_scaffold.dart';
import 'package:akuCommunity/utils/headers.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:velocity_x/velocity_x.dart';
class NewAdvicePage extends StatefulWidget {
final AdviceType type;
NewAdvicePage({Key key, @required this.type}) : super(key: key);
@override
_NewAdvicePageState createState() => _NewAdvicePageState();
}
class _NewAdvicePageState extends State<NewAdvicePage> {
int _type = 0;
String get title {
switch (widget.type) {
case AdviceType.SUGGESTION:
return '建议咨询';
break;
case AdviceType.COMPLAIN:
return '投诉表扬';
break;
}
return '';
}
List<String> get tabs {
switch (widget.type) {
case AdviceType.SUGGESTION:
return ['您的建议', '您的咨询'];
break;
case AdviceType.COMPLAIN:
return ['您的投诉', '您的表扬'];
break;
}
return [];
}
_buildType(int index, String asset, String title) {
bool isSelected = _type == index;
return GestureDetector(
onTap: () {
_type = index;
setState(() {});
},
child: AnimatedContainer(
height: 72.w,
width: 176.w,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(36.w),
border: Border.all(
color: isSelected ? Color(0xFFFFC40C) : Color(0xFF979797),
width: 2.w,
),
color: Color(0xFFFFF4D3).withOpacity(isSelected ? 1 : 0),
),
duration: Duration(milliseconds: 300),
alignment: Alignment.center,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset(asset, width: 32.w, height: 32.w),
12.wb,
title.text
.size(32.sp)
.color(isSelected ? Color(0xFF333333) : Color(0xFF999999))
.make(),
],
),
),
);
}
@override
Widget build(BuildContext context) {
return BeeScaffold.white(
title: title,
body: ListView(
padding: EdgeInsets.all(32.w),
children: [
'业主/租客房屋'.text.size(28.sp).black.make(),
32.hb,
<Widget>[
Image.asset(
R.ASSETS_IMAGES_HOUSE_ATTESTATION_PNG,
height: 60.w,
width: 60.w,
),
40.wb,
'宁波华茂悦峰\n1幢-1单元-702室'.text.size(32.sp).black.bold.make(),
].row(),
Divider(height: 64.w),
'您要选择的类型是?'.text.size(28.sp).make(),
32.hb,
<Widget>[
_buildType(0, R.ASSETS_ICONS_PROPOSAL_PNG, '建议'),
80.wb,
_buildType(1, R.ASSETS_ICONS_CONSULT_PNG, '咨询'),
].row(),
44.hb,
'请输入内容'.text.size(28.sp).make(),
24.hb,
TextField(
// controller: ,
decoration: InputDecoration(
border: OutlineInputBorder(),
),
),
],
),
);
}
}

@ -1,4 +1,6 @@
/// Sp /// Sp
//TODO CLEAN BOTTOM CODES.
@Deprecated("sh*t sp_key need to be cleaned.")
class SpKey { class SpKey {
// token // token
static final String zntoken = "Authorization"; static final String zntoken = "Authorization";

@ -11,6 +11,8 @@ class BeeScaffold extends StatefulWidget {
/// ///
/// default Colors.white /// default Colors.white
final Color bgColor; final Color bgColor;
final Color bodyColor;
final List<Widget> actions; final List<Widget> actions;
final Widget leading; final Widget leading;
final Widget bottomNavi; final Widget bottomNavi;
@ -21,11 +23,24 @@ class BeeScaffold extends StatefulWidget {
this.body, this.body,
this.actions, this.actions,
this.leading, this.leading,
this.bgColor, this.bgColor = Colors.white,
this.bodyColor = const Color(0xFFF9F9F9),
this.bottomNavi, this.bottomNavi,
this.appBarBottom}) this.appBarBottom})
: super(key: key); : super(key: key);
BeeScaffold.white(
{Key key,
@required this.title,
this.body,
this.actions,
this.leading,
this.bgColor = Colors.white,
this.bottomNavi,
this.appBarBottom})
: this.bodyColor = Colors.white,
super(key: key);
@override @override
_BeeScaffoldState createState() => _BeeScaffoldState(); _BeeScaffoldState createState() => _BeeScaffoldState();
} }
@ -34,9 +49,9 @@ class _BeeScaffoldState extends State<BeeScaffold> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
backgroundColor: Color(0xFFF9F9F9), backgroundColor: widget.bodyColor,
appBar: AppBar( appBar: AppBar(
backgroundColor: widget.bgColor ?? Colors.white, backgroundColor: widget.bgColor,
elevation: 0, elevation: 0,
title: title:
widget.title.text.size(32.sp).color(Color(0xFF333333)).bold.make(), widget.title.text.size(32.sp).color(Color(0xFF333333)).bold.make(),

@ -3,6 +3,9 @@ import 'package:flutter/cupertino.dart';
import 'package:akuCommunity/utils/headers.dart'; import 'package:akuCommunity/utils/headers.dart';
import 'package:akuCommunity/base/base_style.dart'; import 'package:akuCommunity/base/base_style.dart';
//TODO CLEAN BOTTOM CODES.
//THIS IS SHIT BUTTON
@Deprecated("sh*t bottom_button need to be cleaned.")
class BottomButton extends StatefulWidget { class BottomButton extends StatefulWidget {
final String title; final String title;
final Function fun; final Function fun;

@ -0,0 +1,36 @@
import 'package:akuCommunity/base/base_style.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
class BottomButton extends StatelessWidget {
final VoidCallback onPressed;
final Widget child;
const BottomButton({
Key key,
@required this.onPressed,
@required this.child,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
color: kPrimaryColor,
padding: EdgeInsets.only(bottom: MediaQuery.of(context).padding.bottom),
child: MaterialButton(
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
child: DefaultTextStyle(
child: child,
style: TextStyle(
color: Colors.black,
fontWeight: FontWeight.bold,
fontSize: 32.sp,
),
),
onPressed: onPressed,
color: kPrimaryColor,
height: 98.w,
),
);
}
}
Loading…
Cancel
Save