parent
5fd4aa8790
commit
310ca9a353
@ -0,0 +1,88 @@
|
||||
class FixedDetailModel {
|
||||
AppReportRepairVo appReportRepairVo;
|
||||
List<AppProcessRecordVo> appProcessRecordVo;
|
||||
List<String> appMaintenanceResultVo; //暂无用 待修改
|
||||
List<String> appDispatchListVo; //暂无用 待修改
|
||||
|
||||
FixedDetailModel(
|
||||
{this.appReportRepairVo,
|
||||
this.appProcessRecordVo,
|
||||
this.appMaintenanceResultVo,
|
||||
this.appDispatchListVo});
|
||||
|
||||
FixedDetailModel.fromJson(Map<String, dynamic> json) {
|
||||
appReportRepairVo = json['appReportRepairVo'] != null
|
||||
? new AppReportRepairVo.fromJson(json['appReportRepairVo'])
|
||||
: null;
|
||||
if (json['appProcessRecordVo'] != null) {
|
||||
appProcessRecordVo = new List<AppProcessRecordVo>();
|
||||
json['appProcessRecordVo'].forEach((v) {
|
||||
appProcessRecordVo.add(new AppProcessRecordVo.fromJson(v));
|
||||
});
|
||||
}
|
||||
appMaintenanceResultVo = json['appMaintenanceResultVo'].cast<String>();
|
||||
appDispatchListVo = json['appDispatchListVo'].cast<String>();
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
if (this.appReportRepairVo != null) {
|
||||
data['appReportRepairVo'] = this.appReportRepairVo.toJson();
|
||||
}
|
||||
if (this.appProcessRecordVo != null) {
|
||||
data['appProcessRecordVo'] =
|
||||
this.appProcessRecordVo.map((v) => v.toJson()).toList();
|
||||
}
|
||||
data['appMaintenanceResultVo'] = this.appMaintenanceResultVo;
|
||||
data['appDispatchListVo'] = this.appDispatchListVo;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
|
||||
class AppReportRepairVo {
|
||||
int id;
|
||||
int type;
|
||||
int status;
|
||||
String reportDetail;
|
||||
List<String> imgUrls;
|
||||
|
||||
AppReportRepairVo(
|
||||
{this.id, this.type, this.status, this.reportDetail, this.imgUrls});
|
||||
|
||||
AppReportRepairVo.fromJson(Map<String, dynamic> json) {
|
||||
id = json['id'];
|
||||
type = json['type'];
|
||||
status = json['status'];
|
||||
reportDetail = json['reportDetail'];
|
||||
imgUrls = json['imgUrls'].cast<String>();
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['id'] = this.id;
|
||||
data['type'] = this.type;
|
||||
data['status'] = this.status;
|
||||
data['reportDetail'] = this.reportDetail;
|
||||
data['imgUrls'] = this.imgUrls;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
|
||||
class AppProcessRecordVo {
|
||||
String operationDate;
|
||||
int operationType;
|
||||
|
||||
AppProcessRecordVo({this.operationDate, this.operationType});
|
||||
|
||||
AppProcessRecordVo.fromJson(Map<String, dynamic> json) {
|
||||
operationDate = json['operationDate'];
|
||||
operationType = json['operationType'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['operationDate'] = this.operationDate;
|
||||
data['operationType'] = this.operationType;
|
||||
return data;
|
||||
}
|
||||
}
|
@ -0,0 +1,142 @@
|
||||
import 'package:akuCommunity/base/base_style.dart';
|
||||
import 'package:akuCommunity/model/manager/fixed_detail_model.dart';
|
||||
import 'package:akuCommunity/pages/manager_func.dart';
|
||||
import 'package:akuCommunity/utils/bee_map.dart';
|
||||
import 'package:akuCommunity/widget/bee_divider.dart';
|
||||
import 'package:akuCommunity/widget/bee_scaffold.dart';
|
||||
import 'package:akuCommunity/widget/horizontal_image_view.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_easyrefresh/easy_refresh.dart';
|
||||
import 'package:velocity_x/velocity_x.dart';
|
||||
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
||||
import 'package:akuCommunity/utils/headers.dart';
|
||||
|
||||
class FixedDetailPage extends StatefulWidget {
|
||||
final int id;
|
||||
FixedDetailPage(
|
||||
this.id, {
|
||||
Key key,
|
||||
}) : super(key: key);
|
||||
|
||||
@override
|
||||
_FixedDetailPageState createState() => _FixedDetailPageState();
|
||||
}
|
||||
|
||||
class _FixedDetailPageState extends State<FixedDetailPage> {
|
||||
EasyRefreshController _easyRefreshController;
|
||||
FixedDetailModel _model;
|
||||
Color _getColor(int state) {
|
||||
switch (state) {
|
||||
case 1:
|
||||
case 2:
|
||||
case 3:
|
||||
return kDarkPrimaryColor;
|
||||
case 4:
|
||||
case 5:
|
||||
case 6:
|
||||
case 7:
|
||||
return ktextSubColor;
|
||||
default:
|
||||
return kDangerColor;
|
||||
}
|
||||
}
|
||||
|
||||
Widget _buildHead(FixedDetailModel model) {
|
||||
return Container(
|
||||
child: Column(
|
||||
children: [
|
||||
Padding(
|
||||
padding: EdgeInsets.fromLTRB(28.w, 20.w, 20.w, 24.w),
|
||||
child: Row(
|
||||
children: [
|
||||
'报修信息'.text.black.size(32.sp).bold.make(),
|
||||
8.widthBox,
|
||||
Container(
|
||||
padding:
|
||||
EdgeInsets.symmetric(horizontal: 20.w, vertical: 4.w),
|
||||
decoration: BoxDecoration(
|
||||
border: Border.all(
|
||||
color: kPrimaryColor,
|
||||
width: 2.w,
|
||||
),
|
||||
borderRadius: BorderRadius.circular(36.w),
|
||||
color: Colors.transparent,
|
||||
),
|
||||
child: BeeMap()
|
||||
.fixTag[model.appReportRepairVo.type]
|
||||
.text
|
||||
.black
|
||||
.size(20.sp)
|
||||
.make(),
|
||||
),
|
||||
Spacer(),
|
||||
BeeMap()
|
||||
.fixState[model.appReportRepairVo.status]
|
||||
.text
|
||||
.color(_getColor(_model.appReportRepairVo.status))
|
||||
.size(24.sp)
|
||||
.bold
|
||||
.make()
|
||||
],
|
||||
),
|
||||
),
|
||||
BeeDivider.horizontal(
|
||||
indent: 24.w,
|
||||
endIndent: 20.w,
|
||||
),
|
||||
24.heightBox,
|
||||
Padding(
|
||||
padding: EdgeInsets.symmetric(horizontal: 28.w),
|
||||
child: model.appReportRepairVo.reportDetail.text.black
|
||||
.size(28.sp)
|
||||
.maxLines(8)
|
||||
.overflow(TextOverflow.ellipsis)
|
||||
.make(),
|
||||
),
|
||||
Padding(
|
||||
padding: EdgeInsets.symmetric(horizontal: 8.w, vertical: 8.w),
|
||||
child: HorizontalImageView(model.appReportRepairVo.imgUrls),
|
||||
)
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BeeScaffold(
|
||||
title: '报事报修',
|
||||
body: Column(
|
||||
children: [
|
||||
EasyRefresh(
|
||||
firstRefresh: true,
|
||||
controller: _easyRefreshController,
|
||||
onRefresh: () async {
|
||||
_model = await ManagerFunc.reportRepairFindBYLD(widget.id);
|
||||
},
|
||||
child: ListView(
|
||||
padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 36.w),
|
||||
children: [
|
||||
_buildHead(_model),
|
||||
].sepWidget(separate: 16.heightBox),
|
||||
),
|
||||
).expand(),
|
||||
Padding(
|
||||
padding: EdgeInsets.only(
|
||||
bottom: MediaQuery.of(context).padding.bottom + 39.w),
|
||||
child: MaterialButton(
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(48.w)),
|
||||
color: kPrimaryColor,
|
||||
padding: EdgeInsets.symmetric(horizontal: 278.w, vertical: 26.w),
|
||||
elevation: 0,
|
||||
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
||||
onPressed: () {},
|
||||
child: '确认完成'.text.black.size(32.sp).bold.make(),
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Reference in new issue