parent
3537388d43
commit
bec9d4403f
@ -1,10 +1,56 @@
|
|||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
|
enum USER_ROLE {
|
||||||
|
///管家角色
|
||||||
|
MANAGER,
|
||||||
|
|
||||||
|
///修理师傅角色
|
||||||
|
FIXER,
|
||||||
|
|
||||||
|
///保安角色
|
||||||
|
SECURITY,
|
||||||
|
|
||||||
|
///无角色
|
||||||
|
EMPTY,
|
||||||
|
}
|
||||||
|
|
||||||
class UserInfoModel {
|
class UserInfoModel {
|
||||||
String nickName;
|
String nickName;
|
||||||
File avatar;
|
File avatar;
|
||||||
|
USER_ROLE role;
|
||||||
UserInfoModel({
|
UserInfoModel({
|
||||||
this.nickName,
|
this.nickName,
|
||||||
this.avatar,
|
this.avatar,
|
||||||
|
this.role,
|
||||||
|
});
|
||||||
|
|
||||||
|
UserInfoModel.empty({
|
||||||
|
this.nickName = '',
|
||||||
|
this.avatar,
|
||||||
|
this.role = USER_ROLE.EMPTY,
|
||||||
|
});
|
||||||
|
|
||||||
|
///管家角色生成
|
||||||
|
///password 000000
|
||||||
|
UserInfoModel.manager({
|
||||||
|
this.nickName = '李管家',
|
||||||
|
this.avatar,
|
||||||
|
this.role = USER_ROLE.MANAGER,
|
||||||
|
});
|
||||||
|
|
||||||
|
///师傅角色生成
|
||||||
|
///password 000001
|
||||||
|
UserInfoModel.fixer({
|
||||||
|
this.nickName = '王师傅',
|
||||||
|
this.avatar,
|
||||||
|
this.role = USER_ROLE.FIXER,
|
||||||
|
});
|
||||||
|
|
||||||
|
///师傅角色生成
|
||||||
|
///password 000002
|
||||||
|
UserInfoModel.security({
|
||||||
|
this.nickName = '林保安',
|
||||||
|
this.avatar,
|
||||||
|
this.role = USER_ROLE.SECURITY,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,16 @@
|
|||||||
|
import 'package:aku_community_manager/ui/widgets/common/aku_scaffold.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class BusinessAndFixPage extends StatefulWidget {
|
||||||
|
BusinessAndFixPage({Key key}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
_BusinessAndFixPageState createState() => _BusinessAndFixPageState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _BusinessAndFixPageState extends State<BusinessAndFixPage> {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return AkuScaffold();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue