删除 物品出户 ‘已作废’ tab

hmxc
张萌 4 years ago
parent cd091a0cc8
commit d1929f66b2

@ -27,11 +27,11 @@ class GoodsOutItemModel {
String get statusValue { String get statusValue {
switch (status) { switch (status) {
case 1: case 1:
return '待出'; return '待出';
case 2: case 2:
return '已出'; return '已出';
case 3: case 3:
return '驳回申请'; return '驳回';
default: default:
return '未知'; return '未知';
} }

@ -90,7 +90,6 @@ class _ItemsOutdoorCardState extends State<ItemsOutdoorCard> {
style: _textStyle, style: _textStyle,
), ),
Spacer(), Spacer(),
//TODO
Text( Text(
'五象新区人才公寓', '五象新区人才公寓',
style: AppStyle().primaryStyle, style: AppStyle().primaryStyle,

@ -19,7 +19,7 @@ class ItemsOutdoorPage extends StatefulWidget {
class _ItemsOutdoorPageState extends State<ItemsOutdoorPage> class _ItemsOutdoorPageState extends State<ItemsOutdoorPage>
with TickerProviderStateMixin { with TickerProviderStateMixin {
List<String> _tabs = ['待出户', '已出户', '已驳回', '已作废', '全部']; List<String> _tabs = ['待出户', '已出户', '已驳回', '全部'];
TabController _tabController; TabController _tabController;
EasyRefreshController _refreshController = EasyRefreshController(); EasyRefreshController _refreshController = EasyRefreshController();
@override @override
@ -48,7 +48,6 @@ class _ItemsOutdoorPageState extends State<ItemsOutdoorPage>
ItemsOutdoorView(status: 1), ItemsOutdoorView(status: 1),
ItemsOutdoorView(status: 2), ItemsOutdoorView(status: 2),
ItemsOutdoorView(status: 3), ItemsOutdoorView(status: 3),
ItemsOutdoorView(status: 4),
ItemsOutdoorView(status: null), ItemsOutdoorView(status: null),
], ],
), ),

Loading…
Cancel
Save