You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
631 B
27 lines
631 B
3 years ago
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class TicketPage extends StatefulWidget {
|
||
|
final String? uid;
|
||
|
TicketPage({Key? key, @required this.uid}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
_TicketPageState createState() => _TicketPageState();
|
||
|
}
|
||
|
|
||
|
class _TicketPageState extends State<TicketPage> {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Scaffold(
|
||
|
appBar: AppBar(
|
||
|
title: Text('工单记录'),
|
||
|
centerTitle: true,
|
||
|
actions: [
|
||
|
// TODO: 提交工单
|
||
|
],
|
||
|
),
|
||
|
// TODO: 历史工单:待我回复、等待回复、已结束
|
||
|
body: Text('ticket'),
|
||
|
);
|
||
|
}
|
||
|
}
|