feat: add Flutter mobile clients and staff delivery API
This commit is contained in:
26
apps/user_app/lib/app/app.dart
Normal file
26
apps/user_app/lib/app/app.dart
Normal file
@@ -0,0 +1,26 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../ui/core/app_theme.dart';
|
||||
import 'dependencies.dart';
|
||||
import 'router.dart';
|
||||
|
||||
class UserClientApp extends StatefulWidget {
|
||||
const UserClientApp({required this.dependencies, super.key});
|
||||
|
||||
final AppDependencies dependencies;
|
||||
|
||||
@override
|
||||
State<UserClientApp> createState() => _UserClientAppState();
|
||||
}
|
||||
|
||||
class _UserClientAppState extends State<UserClientApp> {
|
||||
late final _router = createRouter(widget.dependencies);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => MaterialApp.router(
|
||||
title: '瓶安芯',
|
||||
debugShowCheckedModeBanner: false,
|
||||
theme: AppTheme.light(),
|
||||
routerConfig: _router,
|
||||
);
|
||||
}
|
||||
83
apps/user_app/lib/app/dependencies.dart
Normal file
83
apps/user_app/lib/app/dependencies.dart
Normal file
@@ -0,0 +1,83 @@
|
||||
import 'package:flutter/foundation.dart';
|
||||
|
||||
import '../data/repositories/client_repository.dart';
|
||||
import '../data/services/api_client.dart';
|
||||
import '../data/services/secure_session_store.dart';
|
||||
|
||||
class AppDependencies {
|
||||
AppDependencies._({
|
||||
required this.session,
|
||||
required this.repository,
|
||||
});
|
||||
|
||||
final UserSession session;
|
||||
final ClientRepository repository;
|
||||
|
||||
static Future<AppDependencies> create() async {
|
||||
final store = SecureSessionStore();
|
||||
final session = UserSession(store);
|
||||
await session.restore();
|
||||
final api = ApiClient(() => session.token);
|
||||
return AppDependencies._(session: session, repository: ClientRepository(api));
|
||||
}
|
||||
}
|
||||
|
||||
class UserSession extends ChangeNotifier {
|
||||
UserSession(this._store);
|
||||
|
||||
static const _root = '/heqi/client/v1/user';
|
||||
final SecureSessionStore _store;
|
||||
String _token = '';
|
||||
|
||||
String get token => _token;
|
||||
bool get isAuthenticated => _token.isNotEmpty;
|
||||
|
||||
Future<void> restore() async {
|
||||
_token = await _store.readToken() ?? '';
|
||||
}
|
||||
|
||||
Future<void> login({
|
||||
required String phone,
|
||||
required String password,
|
||||
String? verificationCode,
|
||||
String? requestIdentity,
|
||||
}) async {
|
||||
final api = ApiClient(() => '');
|
||||
final verification = verificationCode != null && verificationCode.isNotEmpty;
|
||||
final details = jsonMap(
|
||||
await api.post(
|
||||
'$_root/auth/login',
|
||||
authenticated: false,
|
||||
body: {
|
||||
'phone': phone,
|
||||
'mode': verification ? 'verification_code' : 'password',
|
||||
'password': verification ? '' : password,
|
||||
'code': verificationCode ?? '',
|
||||
'request_identity': requestIdentity ?? '',
|
||||
},
|
||||
),
|
||||
);
|
||||
_token = details['access_token'] as String? ?? '';
|
||||
if (_token.isEmpty) throw const ApiException(500, '登录令牌缺失');
|
||||
await _store.writeToken(_token);
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
Future<String> sendCode(String phone, String purpose) async {
|
||||
final api = ApiClient(() => '');
|
||||
final details = jsonMap(
|
||||
await api.post(
|
||||
'$_root/auth/verification-code',
|
||||
authenticated: false,
|
||||
body: {'phone': phone, 'purpose': purpose},
|
||||
),
|
||||
);
|
||||
return details['request_identity'] as String? ?? '';
|
||||
}
|
||||
|
||||
Future<void> logout() async {
|
||||
_token = '';
|
||||
await _store.clear();
|
||||
notifyListeners();
|
||||
}
|
||||
}
|
||||
125
apps/user_app/lib/app/router.dart
Normal file
125
apps/user_app/lib/app/router.dart
Normal file
@@ -0,0 +1,125 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:go_router/go_router.dart';
|
||||
|
||||
import '../ui/features/auth/login_page.dart';
|
||||
import '../ui/features/auth/register_page.dart';
|
||||
import '../ui/features/home/home_page.dart';
|
||||
import '../ui/features/orders/orders_page.dart';
|
||||
import '../ui/features/profile/profile_page.dart';
|
||||
import '../ui/features/shared/record_list_page.dart';
|
||||
import '../ui/features/shared/record_list_view_model.dart';
|
||||
import '../ui/features/shop/shop_page.dart';
|
||||
import 'dependencies.dart';
|
||||
|
||||
GoRouter createRouter(AppDependencies dependencies) => GoRouter(
|
||||
initialLocation: '/home',
|
||||
refreshListenable: dependencies.session,
|
||||
redirect: (context, state) {
|
||||
final authRoute = state.matchedLocation == '/login' || state.matchedLocation == '/register';
|
||||
if (!dependencies.session.isAuthenticated && !authRoute) return '/login';
|
||||
if (dependencies.session.isAuthenticated && state.matchedLocation == '/login') return '/home';
|
||||
return null;
|
||||
},
|
||||
routes: [
|
||||
GoRoute(
|
||||
path: '/login',
|
||||
builder: (context, state) => LoginPage(session: dependencies.session),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/register',
|
||||
builder: (context, state) => RegisterPage(session: dependencies.session),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/records/contracts',
|
||||
builder: (context, state) => RecordListPage(
|
||||
title: '供气合同',
|
||||
eyebrow: '可信履约',
|
||||
viewModel: RecordListViewModel(dependencies.repository.contracts),
|
||||
),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/records/wallet',
|
||||
builder: (context, state) => RecordListPage(
|
||||
title: '钱包流水',
|
||||
eyebrow: '资金记录',
|
||||
viewModel: RecordListViewModel(dependencies.repository.walletRecords),
|
||||
),
|
||||
),
|
||||
StatefulShellRoute.indexedStack(
|
||||
builder: (context, state, navigationShell) => _UserShell(navigationShell: navigationShell),
|
||||
branches: [
|
||||
StatefulShellBranch(
|
||||
routes: [
|
||||
GoRoute(
|
||||
path: '/home',
|
||||
builder: (context, state) => HomePage(repository: dependencies.repository),
|
||||
),
|
||||
],
|
||||
),
|
||||
StatefulShellBranch(
|
||||
routes: [
|
||||
GoRoute(
|
||||
path: '/shop',
|
||||
builder: (context, state) => ShopPage(repository: dependencies.repository),
|
||||
),
|
||||
],
|
||||
),
|
||||
StatefulShellBranch(
|
||||
routes: [
|
||||
GoRoute(
|
||||
path: '/orders',
|
||||
builder: (context, state) => OrdersPage(repository: dependencies.repository),
|
||||
),
|
||||
],
|
||||
),
|
||||
StatefulShellBranch(
|
||||
routes: [
|
||||
GoRoute(
|
||||
path: '/me',
|
||||
builder: (context, state) =>
|
||||
ProfilePage(session: dependencies.session, repository: dependencies.repository),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
);
|
||||
|
||||
class _UserShell extends StatelessWidget {
|
||||
const _UserShell({required this.navigationShell});
|
||||
|
||||
final StatefulNavigationShell navigationShell;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => Scaffold(
|
||||
body: navigationShell,
|
||||
bottomNavigationBar: NavigationBar(
|
||||
selectedIndex: navigationShell.currentIndex,
|
||||
onDestinationSelected: (index) =>
|
||||
navigationShell.goBranch(index, initialLocation: index == navigationShell.currentIndex),
|
||||
destinations: const [
|
||||
NavigationDestination(
|
||||
icon: Icon(Icons.home_outlined),
|
||||
selectedIcon: Icon(Icons.home),
|
||||
label: '首页',
|
||||
),
|
||||
NavigationDestination(
|
||||
icon: Icon(Icons.shopping_bag_outlined),
|
||||
selectedIcon: Icon(Icons.shopping_bag),
|
||||
label: '商城',
|
||||
),
|
||||
NavigationDestination(
|
||||
icon: Icon(Icons.receipt_long_outlined),
|
||||
selectedIcon: Icon(Icons.receipt_long),
|
||||
label: '订单',
|
||||
),
|
||||
NavigationDestination(
|
||||
icon: Icon(Icons.person_outline),
|
||||
selectedIcon: Icon(Icons.person),
|
||||
label: '我的',
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
149
apps/user_app/lib/data/repositories/client_repository.dart
Normal file
149
apps/user_app/lib/data/repositories/client_repository.dart
Normal file
@@ -0,0 +1,149 @@
|
||||
import '../../domain/models/client_models.dart';
|
||||
import '../services/api_client.dart';
|
||||
|
||||
class ClientRepository {
|
||||
ClientRepository(this._api);
|
||||
|
||||
static const root = '/heqi/client/v1/user';
|
||||
final ApiClient _api;
|
||||
|
||||
Future<List<ClientRecord>> contents() async {
|
||||
final values = jsonList(await _api.get('$root/public/contents', authenticated: false));
|
||||
return values
|
||||
.map(
|
||||
(value) => ClientRecord(
|
||||
identity: value['identity'] as String? ?? '',
|
||||
title: value['title'] as String? ?? '安全公告',
|
||||
subtitle: value['summary'] as String? ?? value['content_type'] as String? ?? '',
|
||||
raw: value,
|
||||
),
|
||||
)
|
||||
.toList();
|
||||
}
|
||||
|
||||
Future<List<ClientRecord>> products() async {
|
||||
final values = jsonList(await _api.get('$root/public/products', authenticated: false));
|
||||
return values
|
||||
.map(
|
||||
(value) => ClientRecord(
|
||||
identity: value['identity'] as String? ?? '',
|
||||
title: value['name'] as String? ?? '商品',
|
||||
subtitle:
|
||||
'${moneyText((value['price_amount'] as num?)?.toInt() ?? 0)} · 库存 ${(value['stock_quantity'] as num?)?.toInt() ?? 0}',
|
||||
raw: value,
|
||||
),
|
||||
)
|
||||
.toList();
|
||||
}
|
||||
|
||||
Future<UserProfile> profile() async =>
|
||||
UserProfile.fromJson(jsonMap(await _api.get('$root/auth/profile')));
|
||||
|
||||
Future<WalletSummary> wallet() async =>
|
||||
WalletSummary.fromJson(jsonMap(await _api.get('$root/wallet')));
|
||||
|
||||
Future<List<ClientRecord>> addresses() =>
|
||||
_records('$root/addresses', titleKeys: const ['address'], subtitleKeys: const ['is_default']);
|
||||
|
||||
Future<List<ClientRecord>> shopOrders() => _records(
|
||||
'$root/shop/orders',
|
||||
titleKeys: const ['order_no'],
|
||||
subtitleKeys: const ['payable_amount', 'logistics_company'],
|
||||
statusKey: 'order_status',
|
||||
);
|
||||
|
||||
Future<List<ClientRecord>> gasOrders() => _records(
|
||||
'$root/gas/orders',
|
||||
titleKeys: const ['order_no'],
|
||||
subtitleKeys: const ['address'],
|
||||
statusKey: 'order_status',
|
||||
);
|
||||
|
||||
Future<List<ClientRecord>> contracts() => _records(
|
||||
'$root/gas/contracts',
|
||||
titleKeys: const ['contract_no'],
|
||||
subtitleKeys: const ['title'],
|
||||
statusKey: 'contract_status',
|
||||
);
|
||||
|
||||
Future<List<ClientRecord>> tickets() => _records(
|
||||
'$root/tickets',
|
||||
titleKeys: const ['ticket_no'],
|
||||
subtitleKeys: const ['description', 'category'],
|
||||
statusKey: 'ticket_status',
|
||||
);
|
||||
|
||||
Future<List<ClientRecord>> walletRecords() => _records(
|
||||
'$root/wallet/records',
|
||||
titleKeys: const ['trade_type', 'record_no'],
|
||||
subtitleKeys: const ['amount', 'direction'],
|
||||
);
|
||||
|
||||
Future<Map<String, Object?>?> serviceRelation() async {
|
||||
final value = await _api.get('$root/service-relation');
|
||||
if (value == null || value == '') return null;
|
||||
return jsonMap(value);
|
||||
}
|
||||
|
||||
Future<void> addAddress(String address, {bool isDefault = false}) async {
|
||||
await _api.post('$root/addresses', body: {'address': address, 'is_default': isDefault});
|
||||
}
|
||||
|
||||
Future<void> createTicket({
|
||||
required String requestNo,
|
||||
required String category,
|
||||
required String description,
|
||||
}) async {
|
||||
await _api.post(
|
||||
'$root/tickets',
|
||||
body: {'request_no': requestNo, 'category': category, 'description': description},
|
||||
);
|
||||
}
|
||||
|
||||
Future<void> createShopOrder({
|
||||
required String requestNo,
|
||||
required String productIdentity,
|
||||
required String addressIdentity,
|
||||
required String contactName,
|
||||
required String contactPhone,
|
||||
}) async {
|
||||
await _api.post(
|
||||
'$root/shop/orders',
|
||||
body: {
|
||||
'request_no': requestNo,
|
||||
'address_identity': addressIdentity,
|
||||
'contact_name': contactName,
|
||||
'contact_phone': contactPhone,
|
||||
'items': [
|
||||
{'product_identity': productIdentity, 'quantity': 1},
|
||||
],
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
Future<List<ClientRecord>> _records(
|
||||
String path, {
|
||||
required List<String> titleKeys,
|
||||
required List<String> subtitleKeys,
|
||||
String? statusKey,
|
||||
}) async {
|
||||
final values = jsonList(await _api.get(path));
|
||||
return values.map((value) {
|
||||
String pick(List<String> keys) {
|
||||
for (final key in keys) {
|
||||
final item = value[key];
|
||||
if (item != null && item.toString().isNotEmpty) return item.toString();
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
return ClientRecord(
|
||||
identity: value['identity'] as String? ?? '',
|
||||
title: pick(titleKeys),
|
||||
subtitle: pick(subtitleKeys),
|
||||
status: statusKey == null ? null : (value[statusKey] as num?)?.toInt(),
|
||||
raw: value,
|
||||
);
|
||||
}).toList();
|
||||
}
|
||||
}
|
||||
89
apps/user_app/lib/data/services/api_client.dart
Normal file
89
apps/user_app/lib/data/services/api_client.dart
Normal file
@@ -0,0 +1,89 @@
|
||||
import 'dart:convert';
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:http/http.dart' as http;
|
||||
|
||||
class ApiException implements Exception {
|
||||
const ApiException(this.code, this.message);
|
||||
|
||||
final int code;
|
||||
final String message;
|
||||
|
||||
@override
|
||||
String toString() => message;
|
||||
}
|
||||
|
||||
class ApiClient {
|
||||
ApiClient(
|
||||
this._tokenProvider, {
|
||||
http.Client? client,
|
||||
String? baseUrl,
|
||||
}) : _client = client ?? http.Client(),
|
||||
baseUrl =
|
||||
baseUrl ??
|
||||
const String.fromEnvironment(
|
||||
'API_BASE_URL',
|
||||
defaultValue: 'http://10.0.2.2:12426',
|
||||
);
|
||||
|
||||
final String baseUrl;
|
||||
final String Function() _tokenProvider;
|
||||
final http.Client _client;
|
||||
|
||||
Future<Object?> get(String path, {bool authenticated = true}) =>
|
||||
_send('GET', path, authenticated: authenticated);
|
||||
|
||||
Future<Object?> post(
|
||||
String path, {
|
||||
Map<String, Object?>? body,
|
||||
bool authenticated = true,
|
||||
}) => _send('POST', path, body: body, authenticated: authenticated);
|
||||
|
||||
Future<Object?> put(String path, {Map<String, Object?>? body}) => _send('PUT', path, body: body);
|
||||
|
||||
Future<Object?> delete(String path, {Map<String, Object?>? body}) =>
|
||||
_send('DELETE', path, body: body);
|
||||
|
||||
Future<Object?> _send(
|
||||
String method,
|
||||
String path, {
|
||||
Map<String, Object?>? body,
|
||||
bool authenticated = true,
|
||||
}) async {
|
||||
final request = http.Request(method, Uri.parse('$baseUrl$path'));
|
||||
request.headers[HttpHeaders.acceptHeader] = 'application/json';
|
||||
if (authenticated) {
|
||||
final token = _tokenProvider();
|
||||
if (token.isNotEmpty) request.headers[HttpHeaders.authorizationHeader] = token;
|
||||
}
|
||||
if (body != null) {
|
||||
request.headers[HttpHeaders.contentTypeHeader] = 'application/json; charset=UTF-8';
|
||||
request.body = jsonEncode(body);
|
||||
}
|
||||
final streamed = await _client.send(request);
|
||||
final response = await http.Response.fromStream(streamed);
|
||||
if (response.statusCode < 200 || response.statusCode >= 300) {
|
||||
throw ApiException(response.statusCode, '网络请求失败(${response.statusCode})');
|
||||
}
|
||||
final decoded = jsonDecode(response.body);
|
||||
if (decoded is! Map<String, Object?>) {
|
||||
throw const ApiException(500, '服务端响应格式错误');
|
||||
}
|
||||
final code = (decoded['code'] as num?)?.toInt() ?? 500;
|
||||
if (code != 0) {
|
||||
throw ApiException(code, decoded['message'] as String? ?? '操作失败');
|
||||
}
|
||||
return decoded['details'];
|
||||
}
|
||||
}
|
||||
|
||||
Map<String, Object?> jsonMap(Object? value) {
|
||||
if (value is Map<String, Object?>) return value;
|
||||
if (value is Map) return value.map((key, item) => MapEntry(key.toString(), item));
|
||||
throw const ApiException(500, '服务端数据格式错误');
|
||||
}
|
||||
|
||||
List<Map<String, Object?>> jsonList(Object? value) {
|
||||
if (value is! List) return const [];
|
||||
return value.map<Map<String, Object?>>(jsonMap).toList(growable: false);
|
||||
}
|
||||
15
apps/user_app/lib/data/services/secure_session_store.dart
Normal file
15
apps/user_app/lib/data/services/secure_session_store.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
|
||||
|
||||
class SecureSessionStore {
|
||||
SecureSessionStore({FlutterSecureStorage? storage})
|
||||
: _storage = storage ?? const FlutterSecureStorage();
|
||||
|
||||
static const _tokenKey = 'user_app_access_token';
|
||||
final FlutterSecureStorage _storage;
|
||||
|
||||
Future<String?> readToken() => _storage.read(key: _tokenKey);
|
||||
|
||||
Future<void> writeToken(String token) => _storage.write(key: _tokenKey, value: token);
|
||||
|
||||
Future<void> clear() => _storage.delete(key: _tokenKey);
|
||||
}
|
||||
50
apps/user_app/lib/domain/models/client_models.dart
Normal file
50
apps/user_app/lib/domain/models/client_models.dart
Normal file
@@ -0,0 +1,50 @@
|
||||
class ClientRecord {
|
||||
const ClientRecord({
|
||||
required this.identity,
|
||||
required this.title,
|
||||
required this.subtitle,
|
||||
required this.raw,
|
||||
this.status,
|
||||
});
|
||||
|
||||
final String identity;
|
||||
final String title;
|
||||
final String subtitle;
|
||||
final int? status;
|
||||
final Map<String, Object?> raw;
|
||||
}
|
||||
|
||||
class UserProfile {
|
||||
const UserProfile({
|
||||
required this.identity,
|
||||
required this.name,
|
||||
required this.phone,
|
||||
required this.avatar,
|
||||
});
|
||||
|
||||
final String identity;
|
||||
final String name;
|
||||
final String phone;
|
||||
final String avatar;
|
||||
|
||||
factory UserProfile.fromJson(Map<String, Object?> json) => UserProfile(
|
||||
identity: json['identity'] as String? ?? '',
|
||||
name: json['name'] as String? ?? '',
|
||||
phone: json['phone'] as String? ?? '',
|
||||
avatar: json['avatar'] as String? ?? '',
|
||||
);
|
||||
}
|
||||
|
||||
class WalletSummary {
|
||||
const WalletSummary({required this.balance, required this.withdrawalBalance});
|
||||
|
||||
final int balance;
|
||||
final int withdrawalBalance;
|
||||
|
||||
factory WalletSummary.fromJson(Map<String, Object?> json) => WalletSummary(
|
||||
balance: (json['balance'] as num?)?.toInt() ?? 0,
|
||||
withdrawalBalance: (json['withdrawal_balance'] as num?)?.toInt() ?? 0,
|
||||
);
|
||||
}
|
||||
|
||||
String moneyText(int cents) => '¥${(cents / 100).toStringAsFixed(2)}';
|
||||
10
apps/user_app/lib/main.dart
Normal file
10
apps/user_app/lib/main.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'app/app.dart';
|
||||
import 'app/dependencies.dart';
|
||||
|
||||
Future<void> main() async {
|
||||
WidgetsFlutterBinding.ensureInitialized();
|
||||
final dependencies = await AppDependencies.create();
|
||||
runApp(UserClientApp(dependencies: dependencies));
|
||||
}
|
||||
45
apps/user_app/lib/ui/core/app_theme.dart
Normal file
45
apps/user_app/lib/ui/core/app_theme.dart
Normal file
@@ -0,0 +1,45 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class AppTheme {
|
||||
static const safetyBlue = Color(0xFF246BFD);
|
||||
static const ink = Color(0xFF14213D);
|
||||
static const canvas = Color(0xFFF4F7FB);
|
||||
|
||||
static ThemeData light() {
|
||||
final scheme = ColorScheme.fromSeed(
|
||||
seedColor: safetyBlue,
|
||||
primary: safetyBlue,
|
||||
surface: Colors.white,
|
||||
error: const Color(0xFFD92D20),
|
||||
);
|
||||
return ThemeData(
|
||||
colorScheme: scheme,
|
||||
scaffoldBackgroundColor: canvas,
|
||||
useMaterial3: true,
|
||||
appBarTheme: const AppBarTheme(
|
||||
backgroundColor: Colors.transparent,
|
||||
foregroundColor: ink,
|
||||
centerTitle: false,
|
||||
),
|
||||
cardTheme: CardThemeData(
|
||||
color: Colors.white,
|
||||
elevation: 0,
|
||||
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20)),
|
||||
),
|
||||
inputDecorationTheme: InputDecorationTheme(
|
||||
filled: true,
|
||||
fillColor: Colors.white,
|
||||
border: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(16),
|
||||
borderSide: BorderSide.none,
|
||||
),
|
||||
),
|
||||
elevatedButtonTheme: ElevatedButtonThemeData(
|
||||
style: ElevatedButton.styleFrom(
|
||||
minimumSize: const Size.fromHeight(48),
|
||||
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(16)),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
96
apps/user_app/lib/ui/core/widgets.dart
Normal file
96
apps/user_app/lib/ui/core/widgets.dart
Normal file
@@ -0,0 +1,96 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../domain/models/client_models.dart';
|
||||
|
||||
class PageIntro extends StatelessWidget {
|
||||
const PageIntro({required this.eyebrow, required this.title, this.description, super.key});
|
||||
|
||||
final String eyebrow;
|
||||
final String title;
|
||||
final String? description;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => Padding(
|
||||
padding: const EdgeInsets.fromLTRB(20, 12, 20, 16),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
eyebrow,
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
fontWeight: FontWeight.w700,
|
||||
letterSpacing: 1,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 6),
|
||||
Text(
|
||||
title,
|
||||
style: Theme.of(context).textTheme.headlineMedium?.copyWith(fontWeight: FontWeight.w800),
|
||||
),
|
||||
if (description != null) ...[
|
||||
const SizedBox(height: 6),
|
||||
Text(description!, style: Theme.of(context).textTheme.bodyMedium),
|
||||
],
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
class RecordCard extends StatelessWidget {
|
||||
const RecordCard({required this.record, this.onTap, super.key});
|
||||
|
||||
final ClientRecord record;
|
||||
final VoidCallback? onTap;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => Card(
|
||||
margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 6),
|
||||
child: ListTile(
|
||||
contentPadding: const EdgeInsets.symmetric(horizontal: 18, vertical: 10),
|
||||
title: Text(
|
||||
record.title.isEmpty ? '未命名记录' : record.title,
|
||||
style: const TextStyle(fontWeight: FontWeight.w700),
|
||||
),
|
||||
subtitle: record.subtitle.isEmpty
|
||||
? null
|
||||
: Padding(padding: const EdgeInsets.only(top: 6), child: Text(record.subtitle)),
|
||||
trailing: record.status == null
|
||||
? const Icon(Icons.chevron_right)
|
||||
: Chip(label: Text('状态 ${record.status}'), visualDensity: VisualDensity.compact),
|
||||
onTap: onTap,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
class EmptyState extends StatelessWidget {
|
||||
const EmptyState({required this.title, required this.description, this.onRetry, super.key});
|
||||
|
||||
final String title;
|
||||
final String description;
|
||||
final VoidCallback? onRetry;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => Center(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(32),
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Icon(Icons.inbox_outlined, size: 52, color: Theme.of(context).colorScheme.outline),
|
||||
const SizedBox(height: 16),
|
||||
Text(
|
||||
title,
|
||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(fontWeight: FontWeight.w700),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
Text(description, textAlign: TextAlign.center),
|
||||
if (onRetry != null) ...[
|
||||
const SizedBox(height: 18),
|
||||
OutlinedButton(onPressed: onRetry, child: const Text('重新加载')),
|
||||
],
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
119
apps/user_app/lib/ui/features/auth/login_page.dart
Normal file
119
apps/user_app/lib/ui/features/auth/login_page.dart
Normal file
@@ -0,0 +1,119 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:go_router/go_router.dart';
|
||||
|
||||
import '../../../app/dependencies.dart';
|
||||
|
||||
class LoginPage extends StatefulWidget {
|
||||
const LoginPage({required this.session, super.key});
|
||||
|
||||
final UserSession session;
|
||||
|
||||
@override
|
||||
State<LoginPage> createState() => _LoginPageState();
|
||||
}
|
||||
|
||||
class _LoginPageState extends State<LoginPage> {
|
||||
final _phone = TextEditingController();
|
||||
final _password = TextEditingController();
|
||||
bool _submitting = false;
|
||||
String? _error;
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_phone.dispose();
|
||||
_password.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
Future<void> _login() async {
|
||||
setState(() {
|
||||
_submitting = true;
|
||||
_error = null;
|
||||
});
|
||||
try {
|
||||
await widget.session.login(phone: _phone.text.trim(), password: _password.text);
|
||||
} catch (error) {
|
||||
if (mounted) setState(() => _error = error.toString());
|
||||
} finally {
|
||||
if (mounted) setState(() => _submitting = false);
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => Scaffold(
|
||||
body: SafeArea(
|
||||
child: Center(
|
||||
child: SingleChildScrollView(
|
||||
padding: const EdgeInsets.all(24),
|
||||
child: ConstrainedBox(
|
||||
constraints: const BoxConstraints(maxWidth: 420),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
Icon(
|
||||
Icons.health_and_safety_rounded,
|
||||
size: 68,
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
),
|
||||
const SizedBox(height: 20),
|
||||
Text(
|
||||
'瓶安芯',
|
||||
textAlign: TextAlign.center,
|
||||
style: Theme.of(
|
||||
context,
|
||||
).textTheme.headlineLarge?.copyWith(fontWeight: FontWeight.w900),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
const Text('安全服务与生活采购', textAlign: TextAlign.center),
|
||||
const SizedBox(height: 36),
|
||||
TextField(
|
||||
controller: _phone,
|
||||
keyboardType: TextInputType.phone,
|
||||
autofillHints: const [AutofillHints.telephoneNumber],
|
||||
decoration: const InputDecoration(
|
||||
labelText: '手机号',
|
||||
prefixIcon: Icon(Icons.phone_outlined),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 14),
|
||||
TextField(
|
||||
controller: _password,
|
||||
obscureText: true,
|
||||
autofillHints: const [AutofillHints.password],
|
||||
decoration: const InputDecoration(
|
||||
labelText: '密码',
|
||||
prefixIcon: Icon(Icons.lock_outline),
|
||||
),
|
||||
),
|
||||
if (_error != null) ...[
|
||||
const SizedBox(height: 12),
|
||||
Text(_error!, style: TextStyle(color: Theme.of(context).colorScheme.error)),
|
||||
],
|
||||
const SizedBox(height: 20),
|
||||
ElevatedButton(
|
||||
onPressed: _submitting ? null : _login,
|
||||
child: _submitting
|
||||
? const SizedBox.square(
|
||||
dimension: 22,
|
||||
child: CircularProgressIndicator(strokeWidth: 2),
|
||||
)
|
||||
: const Text('安全登录'),
|
||||
),
|
||||
TextButton(
|
||||
onPressed: () => context.push('/register'),
|
||||
child: const Text('首次使用?注册账号'),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
const Text(
|
||||
'登录即表示同意用户协议和隐私政策',
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(fontSize: 12),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
122
apps/user_app/lib/ui/features/auth/register_page.dart
Normal file
122
apps/user_app/lib/ui/features/auth/register_page.dart
Normal file
@@ -0,0 +1,122 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../../app/dependencies.dart';
|
||||
import '../../../data/services/api_client.dart';
|
||||
|
||||
class RegisterPage extends StatefulWidget {
|
||||
const RegisterPage({required this.session, super.key});
|
||||
|
||||
final UserSession session;
|
||||
|
||||
@override
|
||||
State<RegisterPage> createState() => _RegisterPageState();
|
||||
}
|
||||
|
||||
class _RegisterPageState extends State<RegisterPage> {
|
||||
final _phone = TextEditingController();
|
||||
final _name = TextEditingController();
|
||||
final _address = TextEditingController();
|
||||
final _password = TextEditingController();
|
||||
final _code = TextEditingController();
|
||||
String _requestIdentity = '';
|
||||
bool _busy = false;
|
||||
String? _message;
|
||||
|
||||
Future<void> _sendCode() async {
|
||||
try {
|
||||
final identity = await widget.session.sendCode(_phone.text.trim(), 'register');
|
||||
setState(() {
|
||||
_requestIdentity = identity;
|
||||
_message = '验证码已发送';
|
||||
});
|
||||
} catch (error) {
|
||||
setState(() => _message = error.toString());
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _register() async {
|
||||
setState(() => _busy = true);
|
||||
try {
|
||||
final api = ApiClient(() => '');
|
||||
await api.post(
|
||||
'/heqi/client/v1/user/auth/register',
|
||||
authenticated: false,
|
||||
body: {
|
||||
'phone': _phone.text.trim(),
|
||||
'name': _name.text.trim(),
|
||||
'address': _address.text.trim(),
|
||||
'password': _password.text,
|
||||
'code': _code.text.trim(),
|
||||
'request_identity': _requestIdentity,
|
||||
},
|
||||
);
|
||||
if (mounted) Navigator.of(context).pop();
|
||||
} catch (error) {
|
||||
if (mounted) setState(() => _message = error.toString());
|
||||
} finally {
|
||||
if (mounted) setState(() => _busy = false);
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_phone.dispose();
|
||||
_name.dispose();
|
||||
_address.dispose();
|
||||
_password.dispose();
|
||||
_code.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => Scaffold(
|
||||
appBar: AppBar(title: const Text('注册用户')),
|
||||
body: ListView(
|
||||
padding: const EdgeInsets.all(20),
|
||||
children: [
|
||||
TextField(
|
||||
controller: _phone,
|
||||
keyboardType: TextInputType.phone,
|
||||
decoration: const InputDecoration(labelText: '手机号'),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
TextField(
|
||||
controller: _name,
|
||||
decoration: const InputDecoration(labelText: '姓名'),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
TextField(
|
||||
controller: _address,
|
||||
decoration: const InputDecoration(labelText: '服务地址'),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
TextField(
|
||||
controller: _password,
|
||||
obscureText: true,
|
||||
decoration: const InputDecoration(labelText: '登录密码'),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: TextField(
|
||||
controller: _code,
|
||||
keyboardType: TextInputType.number,
|
||||
decoration: const InputDecoration(labelText: '验证码'),
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 10),
|
||||
OutlinedButton(onPressed: _sendCode, child: const Text('获取验证码')),
|
||||
],
|
||||
),
|
||||
if (_message != null)
|
||||
Padding(padding: const EdgeInsets.only(top: 12), child: Text(_message!)),
|
||||
const SizedBox(height: 24),
|
||||
ElevatedButton(
|
||||
onPressed: _busy || _requestIdentity.isEmpty ? null : _register,
|
||||
child: const Text('创建账号'),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
109
apps/user_app/lib/ui/features/home/home_page.dart
Normal file
109
apps/user_app/lib/ui/features/home/home_page.dart
Normal file
@@ -0,0 +1,109 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../../data/repositories/client_repository.dart';
|
||||
import '../../../domain/models/client_models.dart';
|
||||
import '../../core/widgets.dart';
|
||||
|
||||
class HomePage extends StatefulWidget {
|
||||
const HomePage({required this.repository, super.key});
|
||||
|
||||
final ClientRepository repository;
|
||||
|
||||
@override
|
||||
State<HomePage> createState() => _HomePageState();
|
||||
}
|
||||
|
||||
class _HomePageState extends State<HomePage> {
|
||||
late Future<(List<ClientRecord>, Map<String, Object?>?)> _future;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_future = _load();
|
||||
}
|
||||
|
||||
Future<(List<ClientRecord>, Map<String, Object?>?)> _load() async =>
|
||||
(await widget.repository.contents(), await widget.repository.serviceRelation());
|
||||
|
||||
Future<void> _refresh() async {
|
||||
setState(() => _future = _load());
|
||||
await _future;
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => Scaffold(
|
||||
body: SafeArea(
|
||||
child: FutureBuilder<(List<ClientRecord>, Map<String, Object?>?)>(
|
||||
future: _future,
|
||||
builder: (context, snapshot) {
|
||||
if (snapshot.connectionState == ConnectionState.waiting) {
|
||||
return const Center(child: CircularProgressIndicator());
|
||||
}
|
||||
if (snapshot.hasError) {
|
||||
return EmptyState(
|
||||
title: '首页加载失败',
|
||||
description: snapshot.error.toString(),
|
||||
onRetry: _refresh,
|
||||
);
|
||||
}
|
||||
final (contents, relation) = snapshot.data ?? (const <ClientRecord>[], null);
|
||||
return RefreshIndicator(
|
||||
onRefresh: _refresh,
|
||||
child: ListView(
|
||||
physics: const AlwaysScrollableScrollPhysics(),
|
||||
padding: const EdgeInsets.only(bottom: 24),
|
||||
children: [
|
||||
const PageIntro(
|
||||
eyebrow: '安全生活',
|
||||
title: '今天也要安心用气',
|
||||
description: '设备控制能力尚未开放,本页只展示真实服务与安全内容。',
|
||||
),
|
||||
Card(
|
||||
margin: const EdgeInsets.symmetric(horizontal: 16),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(20),
|
||||
child: Row(
|
||||
children: [
|
||||
Icon(
|
||||
Icons.store_mall_directory_outlined,
|
||||
size: 38,
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
),
|
||||
const SizedBox(width: 14),
|
||||
Expanded(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
const Text('当前服务归属', style: TextStyle(fontWeight: FontWeight.w800)),
|
||||
const SizedBox(height: 4),
|
||||
Text(
|
||||
relation == null
|
||||
? '尚未建立服务关系'
|
||||
: '${relation['gas_name'] ?? ''} ${relation['delivery_name'] ?? ''}',
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
const Padding(
|
||||
padding: EdgeInsets.fromLTRB(20, 26, 20, 8),
|
||||
child: Text('安全公告', style: TextStyle(fontWeight: FontWeight.w800, fontSize: 18)),
|
||||
),
|
||||
if (contents.isEmpty)
|
||||
const Padding(
|
||||
padding: EdgeInsets.all(20),
|
||||
child: Text('暂无已发布内容'),
|
||||
)
|
||||
else
|
||||
...contents.take(6).map((item) => RecordCard(record: item)),
|
||||
],
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
47
apps/user_app/lib/ui/features/orders/orders_page.dart
Normal file
47
apps/user_app/lib/ui/features/orders/orders_page.dart
Normal file
@@ -0,0 +1,47 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../../data/repositories/client_repository.dart';
|
||||
import '../shared/record_list_page.dart';
|
||||
import '../shared/record_list_view_model.dart';
|
||||
|
||||
class OrdersPage extends StatelessWidget {
|
||||
const OrdersPage({required this.repository, super.key});
|
||||
|
||||
final ClientRepository repository;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => DefaultTabController(
|
||||
length: 3,
|
||||
child: Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('我的订单'),
|
||||
bottom: const TabBar(
|
||||
tabs: [
|
||||
Tab(text: '商城'),
|
||||
Tab(text: '供气'),
|
||||
Tab(text: '服务工单'),
|
||||
],
|
||||
),
|
||||
),
|
||||
body: TabBarView(
|
||||
children: [
|
||||
RecordListPage(
|
||||
title: '商城订单',
|
||||
eyebrow: '交易',
|
||||
viewModel: RecordListViewModel(repository.shopOrders),
|
||||
),
|
||||
RecordListPage(
|
||||
title: '供气订单',
|
||||
eyebrow: '履约',
|
||||
viewModel: RecordListViewModel(repository.gasOrders),
|
||||
),
|
||||
RecordListPage(
|
||||
title: '服务工单',
|
||||
eyebrow: '服务',
|
||||
viewModel: RecordListViewModel(repository.tickets),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
175
apps/user_app/lib/ui/features/profile/profile_page.dart
Normal file
175
apps/user_app/lib/ui/features/profile/profile_page.dart
Normal file
@@ -0,0 +1,175 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:go_router/go_router.dart';
|
||||
import 'package:uuid/uuid.dart';
|
||||
|
||||
import '../../../app/dependencies.dart';
|
||||
import '../../../data/repositories/client_repository.dart';
|
||||
import '../../../domain/models/client_models.dart';
|
||||
|
||||
class ProfilePage extends StatefulWidget {
|
||||
const ProfilePage({required this.session, required this.repository, super.key});
|
||||
|
||||
final UserSession session;
|
||||
final ClientRepository repository;
|
||||
|
||||
@override
|
||||
State<ProfilePage> createState() => _ProfilePageState();
|
||||
}
|
||||
|
||||
class _ProfilePageState extends State<ProfilePage> {
|
||||
late Future<(UserProfile, WalletSummary)> _future;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_future = _load();
|
||||
}
|
||||
|
||||
Future<(UserProfile, WalletSummary)> _load() async =>
|
||||
(await widget.repository.profile(), await widget.repository.wallet());
|
||||
|
||||
Future<void> _addAddress() async {
|
||||
final controller = TextEditingController();
|
||||
final address = await showDialog<String>(
|
||||
context: context,
|
||||
builder: (context) => AlertDialog(
|
||||
title: const Text('新增地址'),
|
||||
content: TextField(
|
||||
controller: controller,
|
||||
decoration: const InputDecoration(labelText: '详细地址'),
|
||||
),
|
||||
actions: [
|
||||
TextButton(onPressed: () => Navigator.pop(context), child: const Text('取消')),
|
||||
FilledButton(
|
||||
onPressed: () => Navigator.pop(context, controller.text.trim()),
|
||||
child: const Text('保存'),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
controller.dispose();
|
||||
if (address == null || address.isEmpty) return;
|
||||
await widget.repository.addAddress(address, isDefault: true);
|
||||
if (mounted) ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text('地址已保存')));
|
||||
}
|
||||
|
||||
Future<void> _createTicket() async {
|
||||
final controller = TextEditingController();
|
||||
final description = await showDialog<String>(
|
||||
context: context,
|
||||
builder: (context) => AlertDialog(
|
||||
title: const Text('申请维修'),
|
||||
content: TextField(
|
||||
controller: controller,
|
||||
maxLines: 4,
|
||||
decoration: const InputDecoration(labelText: '问题描述'),
|
||||
),
|
||||
actions: [
|
||||
TextButton(onPressed: () => Navigator.pop(context), child: const Text('取消')),
|
||||
FilledButton(
|
||||
onPressed: () => Navigator.pop(context, controller.text.trim()),
|
||||
child: const Text('提交'),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
controller.dispose();
|
||||
if (description == null || description.isEmpty) return;
|
||||
await widget.repository.createTicket(
|
||||
requestNo: const Uuid().v7(),
|
||||
category: 'repair',
|
||||
description: description,
|
||||
);
|
||||
if (mounted) ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text('工单已提交')));
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => Scaffold(
|
||||
appBar: AppBar(title: const Text('我的')),
|
||||
body: FutureBuilder<(UserProfile, WalletSummary)>(
|
||||
future: _future,
|
||||
builder: (context, snapshot) {
|
||||
if (!snapshot.hasData) {
|
||||
if (snapshot.hasError) return Center(child: Text(snapshot.error.toString()));
|
||||
return const Center(child: CircularProgressIndicator());
|
||||
}
|
||||
final (profile, wallet) = snapshot.data!;
|
||||
return ListView(
|
||||
padding: const EdgeInsets.all(16),
|
||||
children: [
|
||||
Card(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(20),
|
||||
child: Row(
|
||||
children: [
|
||||
CircleAvatar(
|
||||
radius: 30,
|
||||
child: Text(profile.name.isEmpty ? '用' : profile.name.substring(0, 1)),
|
||||
),
|
||||
const SizedBox(width: 14),
|
||||
Expanded(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
profile.name,
|
||||
style: Theme.of(
|
||||
context,
|
||||
).textTheme.titleLarge?.copyWith(fontWeight: FontWeight.w800),
|
||||
),
|
||||
Text(profile.phone),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
Card(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(20),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
const Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text('钱包余额'),
|
||||
SizedBox(height: 4),
|
||||
Text('充值结果以服务端确认为准', style: TextStyle(fontSize: 12)),
|
||||
],
|
||||
),
|
||||
Text(
|
||||
moneyText(wallet.balance),
|
||||
style: Theme.of(
|
||||
context,
|
||||
).textTheme.headlineSmall?.copyWith(fontWeight: FontWeight.w900),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
_item(Icons.location_on_outlined, '地址管理', _addAddress),
|
||||
_item(Icons.description_outlined, '供气合同', () => context.push('/records/contracts')),
|
||||
_item(
|
||||
Icons.account_balance_wallet_outlined,
|
||||
'钱包流水',
|
||||
() => context.push('/records/wallet'),
|
||||
),
|
||||
_item(Icons.build_outlined, '申请维修', _createTicket),
|
||||
_item(Icons.logout, '退出登录', widget.session.logout),
|
||||
],
|
||||
);
|
||||
},
|
||||
),
|
||||
);
|
||||
|
||||
Widget _item(IconData icon, String title, VoidCallback onTap) => Card(
|
||||
child: ListTile(
|
||||
leading: Icon(icon),
|
||||
title: Text(title),
|
||||
trailing: const Icon(Icons.chevron_right),
|
||||
onTap: onTap,
|
||||
),
|
||||
);
|
||||
}
|
||||
86
apps/user_app/lib/ui/features/shared/record_list_page.dart
Normal file
86
apps/user_app/lib/ui/features/shared/record_list_page.dart
Normal file
@@ -0,0 +1,86 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../core/widgets.dart';
|
||||
import 'record_list_view_model.dart';
|
||||
|
||||
class RecordListPage extends StatefulWidget {
|
||||
const RecordListPage({
|
||||
required this.title,
|
||||
required this.eyebrow,
|
||||
required this.viewModel,
|
||||
this.description,
|
||||
this.floatingActionButton,
|
||||
super.key,
|
||||
});
|
||||
|
||||
final String title;
|
||||
final String eyebrow;
|
||||
final String? description;
|
||||
final RecordListViewModel viewModel;
|
||||
final Widget? floatingActionButton;
|
||||
|
||||
@override
|
||||
State<RecordListPage> createState() => _RecordListPageState();
|
||||
}
|
||||
|
||||
class _RecordListPageState extends State<RecordListPage> {
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
widget.viewModel.load();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
widget.viewModel.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => Scaffold(
|
||||
appBar: AppBar(title: Text(widget.title)),
|
||||
floatingActionButton: widget.floatingActionButton,
|
||||
body: ListenableBuilder(
|
||||
listenable: widget.viewModel,
|
||||
builder: (context, _) {
|
||||
final state = widget.viewModel;
|
||||
if (state.loading && state.records.isEmpty) {
|
||||
return const Center(child: CircularProgressIndicator());
|
||||
}
|
||||
if (state.error != null && state.records.isEmpty) {
|
||||
return EmptyState(
|
||||
title: '加载失败',
|
||||
description: state.error.toString(),
|
||||
onRetry: state.load,
|
||||
);
|
||||
}
|
||||
return RefreshIndicator(
|
||||
onRefresh: state.load,
|
||||
child: CustomScrollView(
|
||||
physics: const AlwaysScrollableScrollPhysics(),
|
||||
slivers: [
|
||||
SliverToBoxAdapter(
|
||||
child: PageIntro(
|
||||
eyebrow: widget.eyebrow,
|
||||
title: widget.title,
|
||||
description: widget.description,
|
||||
),
|
||||
),
|
||||
if (state.records.isEmpty)
|
||||
const SliverFillRemaining(
|
||||
hasScrollBody: false,
|
||||
child: EmptyState(title: '暂无记录', description: '服务端还没有可展示的数据'),
|
||||
)
|
||||
else
|
||||
SliverList.builder(
|
||||
itemCount: state.records.length,
|
||||
itemBuilder: (context, index) => RecordCard(record: state.records[index]),
|
||||
),
|
||||
const SliverPadding(padding: EdgeInsets.only(bottom: 24)),
|
||||
],
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
import 'package:flutter/foundation.dart';
|
||||
|
||||
import '../../../domain/models/client_models.dart';
|
||||
|
||||
typedef RecordLoader = Future<List<ClientRecord>> Function();
|
||||
|
||||
class RecordListViewModel extends ChangeNotifier {
|
||||
RecordListViewModel(this._loader);
|
||||
|
||||
final RecordLoader _loader;
|
||||
List<ClientRecord> _records = const [];
|
||||
Object? _error;
|
||||
bool _loading = false;
|
||||
|
||||
List<ClientRecord> get records => List.unmodifiable(_records);
|
||||
Object? get error => _error;
|
||||
bool get loading => _loading;
|
||||
|
||||
Future<void> load() async {
|
||||
_loading = true;
|
||||
_error = null;
|
||||
notifyListeners();
|
||||
try {
|
||||
_records = await _loader();
|
||||
} catch (error) {
|
||||
_error = error;
|
||||
} finally {
|
||||
_loading = false;
|
||||
notifyListeners();
|
||||
}
|
||||
}
|
||||
}
|
||||
142
apps/user_app/lib/ui/features/shop/shop_page.dart
Normal file
142
apps/user_app/lib/ui/features/shop/shop_page.dart
Normal file
@@ -0,0 +1,142 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:uuid/uuid.dart';
|
||||
|
||||
import '../../../data/repositories/client_repository.dart';
|
||||
import '../../../domain/models/client_models.dart';
|
||||
import '../../core/widgets.dart';
|
||||
|
||||
class ShopPage extends StatefulWidget {
|
||||
const ShopPage({required this.repository, super.key});
|
||||
|
||||
final ClientRepository repository;
|
||||
|
||||
@override
|
||||
State<ShopPage> createState() => _ShopPageState();
|
||||
}
|
||||
|
||||
class _ShopPageState extends State<ShopPage> {
|
||||
late Future<List<ClientRecord>> _future;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_future = widget.repository.products();
|
||||
}
|
||||
|
||||
Future<void> _buy(ClientRecord product) async {
|
||||
final profile = await widget.repository.profile();
|
||||
final addresses = await widget.repository.addresses();
|
||||
if (!mounted) return;
|
||||
if (addresses.isEmpty) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text('请先在“我的”中添加收货地址')));
|
||||
return;
|
||||
}
|
||||
final confirmed = await showModalBottomSheet<bool>(
|
||||
context: context,
|
||||
showDragHandle: true,
|
||||
builder: (context) => Padding(
|
||||
padding: const EdgeInsets.fromLTRB(20, 4, 20, 30),
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
Text(
|
||||
'确认下单',
|
||||
style: Theme.of(context).textTheme.titleLarge?.copyWith(fontWeight: FontWeight.w800),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
Text(product.title),
|
||||
Text(addresses.first.title),
|
||||
const SizedBox(height: 18),
|
||||
ElevatedButton(
|
||||
onPressed: () => Navigator.pop(context, true),
|
||||
child: const Text('提交订单'),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
if (confirmed != true) return;
|
||||
try {
|
||||
await widget.repository.createShopOrder(
|
||||
requestNo: const Uuid().v7(),
|
||||
productIdentity: product.identity,
|
||||
addressIdentity: addresses.first.identity,
|
||||
contactName: profile.name,
|
||||
contactPhone: profile.phone,
|
||||
);
|
||||
if (mounted) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text('订单已创建,请前往订单页支付')));
|
||||
}
|
||||
} catch (error) {
|
||||
if (mounted) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(error.toString())));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => Scaffold(
|
||||
appBar: AppBar(title: const Text('安全商城')),
|
||||
body: FutureBuilder<List<ClientRecord>>(
|
||||
future: _future,
|
||||
builder: (context, snapshot) {
|
||||
if (snapshot.connectionState == ConnectionState.waiting) {
|
||||
return const Center(child: CircularProgressIndicator());
|
||||
}
|
||||
if (snapshot.hasError) {
|
||||
return EmptyState(title: '商品加载失败', description: snapshot.error.toString());
|
||||
}
|
||||
final products = snapshot.data ?? const [];
|
||||
return ListView(
|
||||
padding: const EdgeInsets.only(bottom: 24),
|
||||
children: [
|
||||
const PageIntro(eyebrow: '品质保障', title: '燃气安全商城', description: '价格和库存以服务端结算为准'),
|
||||
if (products.isEmpty)
|
||||
const EmptyState(title: '暂无商品', description: '目前没有上架且有库存的商品')
|
||||
else
|
||||
...products.map(
|
||||
(product) => Card(
|
||||
margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 7),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(18),
|
||||
child: Row(
|
||||
children: [
|
||||
Container(
|
||||
width: 60,
|
||||
height: 60,
|
||||
decoration: BoxDecoration(
|
||||
color: const Color(0xFFEAF1FF),
|
||||
borderRadius: BorderRadius.circular(16),
|
||||
),
|
||||
child: const Icon(Icons.local_fire_department_outlined),
|
||||
),
|
||||
const SizedBox(width: 14),
|
||||
Expanded(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
product.title,
|
||||
style: const TextStyle(fontWeight: FontWeight.w800),
|
||||
),
|
||||
const SizedBox(height: 6),
|
||||
Text(product.subtitle),
|
||||
],
|
||||
),
|
||||
),
|
||||
IconButton.filled(
|
||||
onPressed: () => _buy(product),
|
||||
icon: const Icon(Icons.add_shopping_cart),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
},
|
||||
),
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user