|
|
@@ -69,19 +69,16 @@ class EventManage extends GetView<EventManagerController> {
|
|
|
return Column(
|
|
|
children: [
|
|
|
Expanded(
|
|
|
- child: ListView(
|
|
|
- children: [
|
|
|
- Obx(() => LineChart(titles: rightTitles(), children: rightUsers()))
|
|
|
- ],
|
|
|
- ))
|
|
|
+ child: Obx(
|
|
|
+ () => LineChart(titles: rightTitles(), children: rightUsers())))
|
|
|
],
|
|
|
);
|
|
|
}
|
|
|
|
|
|
Iterable<LineChartTitle> rightTitles() {
|
|
|
return [
|
|
|
- LineChartTitle(
|
|
|
- title: Checkbox(value: true, onChanged: (v) {}), width: 32),
|
|
|
+ // LineChartTitle(
|
|
|
+ // title: Checkbox(value: true, onChanged: (v) {}), width: 32),
|
|
|
const LineChartTitle(title: Text('序号'), width: 42),
|
|
|
const LineChartTitle(title: Text('用户名'), width: 70),
|
|
|
const LineChartTitle(title: Text('手机号'), flex: 1),
|
|
|
@@ -95,7 +92,7 @@ class EventManage extends GetView<EventManagerController> {
|
|
|
final (i, one) = e;
|
|
|
|
|
|
return LineChartElem([
|
|
|
- Checkbox(value: false, onChanged: (v) {}),
|
|
|
+ // Checkbox(value: false, onChanged: (v) {}),
|
|
|
Text('${i + 1}'),
|
|
|
Text(one.name),
|
|
|
Text(one.phone),
|