更新
This commit is contained in:
@@ -132,7 +132,7 @@
|
|||||||
"wifi页":{
|
"wifi页":{
|
||||||
"标题":"WIFI配置",
|
"标题":"WIFI配置",
|
||||||
"跳过":"跳过",
|
"跳过":"跳过",
|
||||||
"WLAN":"WLAN",
|
"WLAN":"网络",
|
||||||
"未连接":"未连接",
|
"未连接":"未连接",
|
||||||
"已连接":"已连接",
|
"已连接":"已连接",
|
||||||
"可用WLAN":"可用WLAN",
|
"可用WLAN":"可用WLAN",
|
||||||
@@ -307,7 +307,7 @@
|
|||||||
"搜索":"搜索",
|
"搜索":"搜索",
|
||||||
"名称":"名称:",
|
"名称":"名称:",
|
||||||
"账号":"账号:",
|
"账号":"账号:",
|
||||||
"分享时间":"分享时间:",
|
"分享时间":"分享时间",
|
||||||
"设备校准":"设备校准",
|
"设备校准":"设备校准",
|
||||||
"离床校准":"离床校准",
|
"离床校准":"离床校准",
|
||||||
"未完成":"未完成",
|
"未完成":"未完成",
|
||||||
@@ -367,5 +367,11 @@
|
|||||||
"解绑":"解绑",
|
"解绑":"解绑",
|
||||||
"删除":"删除",
|
"删除":"删除",
|
||||||
"校准未完成提示":"校准还未完成,是否确认退出校准流程?",
|
"校准未完成提示":"校准还未完成,是否确认退出校准流程?",
|
||||||
"确定":"确定"
|
"确定":"确定",
|
||||||
|
"查看":"查看",
|
||||||
|
"报修成功标题":"报修成功",
|
||||||
|
"报修成功":"报修成功!",
|
||||||
|
"查看报修历史":"查看报修历史",
|
||||||
|
"报修成功标语":"报修申请提交后,我们的后台客服人员会与您取得联系,请保持电话畅通,感谢您对本产品的支持!",
|
||||||
|
"问题描述字数限制":"问题描述字数超过限制"
|
||||||
}
|
}
|
||||||
@@ -305,7 +305,7 @@
|
|||||||
"搜索":"搜索",
|
"搜索":"搜索",
|
||||||
"名称":"名稱:",
|
"名称":"名稱:",
|
||||||
"账号":"賬號:",
|
"账号":"賬號:",
|
||||||
"分享时间":"分享時間:",
|
"分享时间":"分享時間",
|
||||||
"设备校准":"設備校準",
|
"设备校准":"設備校準",
|
||||||
"离床校准":"離床校準",
|
"离床校准":"離床校準",
|
||||||
"未完成":"未完成",
|
"未完成":"未完成",
|
||||||
|
|||||||
@@ -163,20 +163,19 @@ class MyUtils {
|
|||||||
return '${twoDigits(date.month)}/${twoDigits(date.day)}';
|
return '${twoDigits(date.month)}/${twoDigits(date.day)}';
|
||||||
}
|
}
|
||||||
|
|
||||||
static String getFormatChineseTime(int date, {bool showWeekday = true}) {
|
static String getFormatChineseTime(int date, {bool showWeekday = true}) {
|
||||||
DateTime dateTime = DateTime.fromMillisecondsSinceEpoch(date);
|
DateTime dateTime = DateTime.fromMillisecondsSinceEpoch(date);
|
||||||
// 格式化年月日
|
// 格式化年月日
|
||||||
String dateStr = DateFormat('yyyy年MM月dd日').format(dateTime);
|
String dateStr = DateFormat('yyyy年MM月dd日').format(dateTime);
|
||||||
|
|
||||||
if (!showWeekday) return dateStr;
|
if (!showWeekday) return dateStr;
|
||||||
|
|
||||||
// 获取星期
|
// 获取星期
|
||||||
const weekDays = ['星期一', '星期二', '星期三', '星期四', '星期五', '星期六', '星期日'];
|
const weekDays = ['星期一', '星期二', '星期三', '星期四', '星期五', '星期六', '星期日'];
|
||||||
String weekStr = weekDays[dateTime.weekday - 1];
|
String weekStr = weekDays[dateTime.weekday - 1];
|
||||||
|
|
||||||
return '$dateStr $weekStr';
|
|
||||||
}
|
|
||||||
|
|
||||||
|
return '$dateStr $weekStr';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Color stringToColor(String hexColor) {
|
Color stringToColor(String hexColor) {
|
||||||
@@ -313,11 +312,16 @@ var returnIconButtom = IconButton(
|
|||||||
icon: Icon(Icons.navigate_before, size: 60.rpx),
|
icon: Icon(Icons.navigate_before, size: 60.rpx),
|
||||||
);
|
);
|
||||||
|
|
||||||
var returnIconButtomAddCallback = (returnCallBack) {
|
var returnIconButtomAddCallback = (
|
||||||
|
VoidCallback? returnCallBack, {
|
||||||
|
bool enableBack = true,
|
||||||
|
}) {
|
||||||
return IconButton(
|
return IconButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
returnCallBack?.call();
|
returnCallBack?.call();
|
||||||
Get.back();
|
if (enableBack) {
|
||||||
|
Get.back();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
icon: Icon(Icons.navigate_before, size: 60.rpx),
|
icon: Icon(Icons.navigate_before, size: 60.rpx),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ class RepairController extends GetControllerEx<RepairModel> {
|
|||||||
attr = GetModel(RepairModel()).obs;
|
attr = GetModel(RepairModel()).obs;
|
||||||
}
|
}
|
||||||
|
|
||||||
RxString device_type = "".obs;
|
RxDouble device_type = 0.0.obs;
|
||||||
RxList repairList = [].obs;
|
RxList repairList = [].obs;
|
||||||
|
|
||||||
RxString name = "".obs;
|
RxString name = "".obs;
|
||||||
|
|||||||
@@ -63,7 +63,6 @@ Future<void> main() async {
|
|||||||
await initLog();
|
await initLog();
|
||||||
await messageStatus();
|
await messageStatus();
|
||||||
|
|
||||||
|
|
||||||
startMessagePolling();
|
startMessagePolling();
|
||||||
// 检查网络
|
// 检查网络
|
||||||
Checknetwork.checkNetwork();
|
Checknetwork.checkNetwork();
|
||||||
@@ -89,11 +88,11 @@ initLanguageSetting() {
|
|||||||
Future<void> initWX() async {
|
Future<void> initWX() async {
|
||||||
Fluwx fluwx = Fluwx();
|
Fluwx fluwx = Fluwx();
|
||||||
fluwx.registerApi(
|
fluwx.registerApi(
|
||||||
//请填写自己的微信appid
|
//请填写自己的微信appid
|
||||||
appId: "wxeb2688220799e2c5",
|
appId: "wxeb2688220799e2c5",
|
||||||
doOnAndroid: true,
|
doOnAndroid: true,
|
||||||
doOnIOS: true,
|
doOnIOS: true,
|
||||||
);
|
universalLink: "https://app.he-info.com/theh/");
|
||||||
}
|
}
|
||||||
|
|
||||||
Timer? _messageTimer;
|
Timer? _messageTimer;
|
||||||
|
|||||||
@@ -291,12 +291,12 @@ class _DeviceDataComponentWidgetState extends State<DeviceDataComponentWidget> {
|
|||||||
});
|
});
|
||||||
_popupEntry?.remove();
|
_popupEntry?.remove();
|
||||||
_popupEntry = null;
|
_popupEntry = null;
|
||||||
dealWifi(widget.device['mac']);
|
dealWifi(widget.device);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
_buildMenuItem(
|
_buildMenuItem(
|
||||||
text: "设备校准".tr,
|
text: "设备校准".tr,
|
||||||
onTap: () {
|
onTap: () async {
|
||||||
setState(() {
|
setState(() {
|
||||||
_isPopupOpen = false;
|
_isPopupOpen = false;
|
||||||
});
|
});
|
||||||
@@ -305,7 +305,7 @@ class _DeviceDataComponentWidgetState extends State<DeviceDataComponentWidget> {
|
|||||||
BlueteethBindController blueteethBindController = Get.find();
|
BlueteethBindController blueteethBindController = Get.find();
|
||||||
blueteethBindController.currentDeviceMac?.value =
|
blueteethBindController.currentDeviceMac?.value =
|
||||||
widget.device['mac'];
|
widget.device['mac'];
|
||||||
Get.toNamed("/calibrationPage", arguments: 2);
|
await Get.toNamed("/calibrationPage", arguments: 2);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
_buildMenuItem(
|
_buildMenuItem(
|
||||||
@@ -848,11 +848,12 @@ class _DeviceDataComponentWidgetState extends State<DeviceDataComponentWidget> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
child: SvgPicture.asset(
|
|
||||||
'assets/img/icon/signal${widget.device['status']['wifi']}.svg',
|
child: Container(
|
||||||
width: 25.rpx,
|
width: 30.rpx,
|
||||||
height: 25.rpx,
|
height: 24.rpx,
|
||||||
fit: BoxFit.fill,
|
child: Image.asset(
|
||||||
|
'assets/img/signal${_getSignalLevel(widget.device['status']['signal'])}.png'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (widget.device['status']['inBed'] != null &&
|
if (widget.device['status']['inBed'] != null &&
|
||||||
@@ -860,10 +861,10 @@ class _DeviceDataComponentWidgetState extends State<DeviceDataComponentWidget> {
|
|||||||
widget.device['status']['status'] == 1)
|
widget.device['status']['status'] == 1)
|
||||||
ClickableContainer(
|
ClickableContainer(
|
||||||
backgroundColor: Colors.transparent,
|
backgroundColor: Colors.transparent,
|
||||||
highlightColor: Colors.grey, // 可根据需要更换颜色
|
highlightColor: Colors.grey,
|
||||||
padding:
|
padding:
|
||||||
EdgeInsetsDirectional.fromSTEB(0, 0.rpx, 0, 0),
|
EdgeInsetsDirectional.fromSTEB(0, 0.rpx, 0, 0),
|
||||||
borderRadius: 0, // 如果你希望圆角可修改
|
borderRadius: 0,
|
||||||
onTap: () {
|
onTap: () {
|
||||||
showTipDialog(
|
showTipDialog(
|
||||||
context,
|
context,
|
||||||
@@ -1285,149 +1286,149 @@ class _DeviceDataComponentWidgetState extends State<DeviceDataComponentWidget> {
|
|||||||
return "未知数据".tr;
|
return "未知数据".tr;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> dealWifi(String mac) async {
|
Future<void> dealWifi(device) async {
|
||||||
bodyDeviceController.wifiMac = mac;
|
bodyDeviceController.wifiMac = device['mac'];
|
||||||
Get.toNamed("/wifiPage", arguments: mac);
|
Get.toNamed("/wifiPage", arguments: device);
|
||||||
return;
|
return;
|
||||||
final blueteethBindController = Get.find<BlueteethBindController>();
|
// final blueteethBindController = Get.find<BlueteethBindController>();
|
||||||
final themeController = Get.find<ThemeController>();
|
// final themeController = Get.find<ThemeController>();
|
||||||
|
|
||||||
// 显示加载对话框
|
// // 显示加载对话框
|
||||||
showLoadingDialog(Get.context!, title: "连接中...".tr);
|
// showLoadingDialog(Get.context!, title: "连接中...".tr);
|
||||||
|
|
||||||
// 设置超时定时器
|
// // 设置超时定时器
|
||||||
Timer? timeoutTimer;
|
// Timer? timeoutTimer;
|
||||||
bool isConnected = false;
|
// bool isConnected = false;
|
||||||
|
|
||||||
try {
|
// try {
|
||||||
// 开始扫描蓝牙设备
|
// // 开始扫描蓝牙设备
|
||||||
await FlutterBluePlus.startScan(timeout: Duration(seconds: 10));
|
// await FlutterBluePlus.startScan(timeout: Duration(seconds: 10));
|
||||||
|
|
||||||
// 设置超时(20秒)
|
// // 设置超时(20秒)
|
||||||
timeoutTimer = Timer(Duration(seconds: 20), () {
|
// timeoutTimer = Timer(Duration(seconds: 20), () {
|
||||||
try {
|
// try {
|
||||||
if (!isConnected) {
|
// if (!isConnected) {
|
||||||
Navigator.of(context).pop(); // 先关闭 dialog
|
// Navigator.of(context).pop(); // 先关闭 dialog
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
// WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
TopSlideNotification.show(
|
// TopSlideNotification.show(
|
||||||
context,
|
// context,
|
||||||
text: "设备连接超时,请重试".tr,
|
// text: "设备连接超时,请重试".tr,
|
||||||
textColor: themeController.currentColor.sc9,
|
// textColor: themeController.currentColor.sc9,
|
||||||
);
|
// );
|
||||||
});
|
// });
|
||||||
FlutterBluePlus.stopScan();
|
// FlutterBluePlus.stopScan();
|
||||||
}
|
// }
|
||||||
} catch (e) {
|
// } catch (e) {
|
||||||
print(e);
|
// print(e);
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
|
|
||||||
// 监听扫描结果
|
// // 监听扫描结果
|
||||||
StreamSubscription<List<ScanResult>>? scanSubscription;
|
// StreamSubscription<List<ScanResult>>? scanSubscription;
|
||||||
scanSubscription = FlutterBluePlus.scanResults.listen((results) async {
|
// scanSubscription = FlutterBluePlus.scanResults.listen((results) async {
|
||||||
// 过滤出符合条件的设备
|
// // 过滤出符合条件的设备
|
||||||
ScanResult? targetDevice;
|
// ScanResult? targetDevice;
|
||||||
|
|
||||||
for (var r in results) {
|
// for (var r in results) {
|
||||||
if (r.advertisementData.manufacturerData.containsKey(0xFFED)) {
|
// if (r.advertisementData.manufacturerData.containsKey(0xFFED)) {
|
||||||
List<int> rawData = r.advertisementData.manufacturerData[0xFFED]!;
|
// List<int> rawData = r.advertisementData.manufacturerData[0xFFED]!;
|
||||||
BleDeviceData deviceData = parseBleData(rawData);
|
// BleDeviceData deviceData = parseBleData(rawData);
|
||||||
String deviceMac =
|
// String deviceMac =
|
||||||
deviceData.deviceId.replaceAll(':', '').toLowerCase();
|
// deviceData.deviceId.replaceAll(':', '').toLowerCase();
|
||||||
if (deviceMac == mac.toLowerCase()) {
|
// if (deviceMac == mac.toLowerCase()) {
|
||||||
targetDevice = r;
|
// targetDevice = r;
|
||||||
break;
|
// break;
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
|
||||||
if (targetDevice != null && !isConnected) {
|
// if (targetDevice != null && !isConnected) {
|
||||||
isConnected = true;
|
// isConnected = true;
|
||||||
FlutterBluePlus.stopScan();
|
// FlutterBluePlus.stopScan();
|
||||||
scanSubscription?.cancel();
|
// scanSubscription?.cancel();
|
||||||
timeoutTimer?.cancel();
|
// timeoutTimer?.cancel();
|
||||||
|
|
||||||
try {
|
// try {
|
||||||
// 连接设备
|
// // 连接设备
|
||||||
// await targetDevice.device.connect();
|
// // await targetDevice.device.connect();
|
||||||
THapp bledevice = THapp(device: targetDevice.device);
|
// THapp bledevice = THapp(device: targetDevice.device);
|
||||||
await bledevice.device.connect();
|
// await bledevice.device.connect();
|
||||||
var res2 = bledevice.isConnected;
|
// var res2 = bledevice.isConnected;
|
||||||
if (res2) {
|
// if (res2) {
|
||||||
Navigator.pop(context);
|
// Navigator.pop(context);
|
||||||
TopSlideNotification.show(
|
// TopSlideNotification.show(
|
||||||
context,
|
// context,
|
||||||
text: "蓝牙绑定.连接成功".tr,
|
// text: "蓝牙绑定.连接成功".tr,
|
||||||
textColor: themeController.currentColor.sc2,
|
// textColor: themeController.currentColor.sc2,
|
||||||
);
|
// );
|
||||||
blueteethBindController.currentDevice = bledevice;
|
// blueteethBindController.currentDevice = bledevice;
|
||||||
if (lisObj != null) {
|
// if (lisObj != null) {
|
||||||
lisObj!.cancel();
|
// lisObj!.cancel();
|
||||||
}
|
// }
|
||||||
var aa;
|
// var aa;
|
||||||
lisObj = blueteethBindController.currentDevice!.statusStream
|
// lisObj = blueteethBindController.currentDevice!.statusStream
|
||||||
.listen((onData) async {
|
// .listen((onData) async {
|
||||||
if (onData.status == BleEventType.recvLineLog) {
|
// if (onData.status == BleEventType.recvLineLog) {
|
||||||
final line = onData.val;
|
// final line = onData.val;
|
||||||
print("[bleee]:" + line);
|
// print("[bleee]:" + line);
|
||||||
}
|
// }
|
||||||
if (onData.status == BleEventType.ready) {
|
// if (onData.status == BleEventType.ready) {
|
||||||
aa = await getDeviceNetVersion(
|
// aa = await getDeviceNetVersion(
|
||||||
blueteethBindController.currentDevice!, 1);
|
// blueteethBindController.currentDevice!, 1);
|
||||||
if (aa == "4g") {
|
// if (aa == "4g") {
|
||||||
// TopSlideNotification.show(
|
// // TopSlideNotification.show(
|
||||||
// Get.context!,
|
// // Get.context!,
|
||||||
// text: "4g设备配置wifi提示".tr,
|
// // text: "4g设备配置wifi提示".tr,
|
||||||
// textColor: themeController.currentColor.sc9,
|
// // textColor: themeController.currentColor.sc9,
|
||||||
// );
|
// // );
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
// WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
TopSlideNotification.show(
|
// TopSlideNotification.show(
|
||||||
context,
|
// context,
|
||||||
text: "4g设备配置wifi提示".tr,
|
// text: "4g设备配置wifi提示".tr,
|
||||||
textColor: themeController.currentColor.sc9,
|
// textColor: themeController.currentColor.sc9,
|
||||||
);
|
// );
|
||||||
});
|
// });
|
||||||
return;
|
// return;
|
||||||
} else {
|
// } else {
|
||||||
Get.toNamed("/wifiPage", arguments: 2);
|
// Get.toNamed("/wifiPage", arguments: 2);
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
|
|
||||||
// Get.toNamed("/wifiPage", arguments: {bledevice});
|
// // Get.toNamed("/wifiPage", arguments: {bledevice});
|
||||||
} else {
|
// } else {
|
||||||
Navigator.pop(context);
|
// Navigator.pop(context);
|
||||||
TopSlideNotification.show(
|
// TopSlideNotification.show(
|
||||||
context,
|
// context,
|
||||||
text: "蓝牙绑定.连接失败".tr,
|
// text: "蓝牙绑定.连接失败".tr,
|
||||||
textColor: themeController.currentColor.sc9,
|
// textColor: themeController.currentColor.sc9,
|
||||||
);
|
// );
|
||||||
}
|
// }
|
||||||
} catch (e) {
|
// } catch (e) {
|
||||||
Navigator.of(Get.context!).pop(); // 关闭加载对话框
|
// Navigator.of(Get.context!).pop(); // 关闭加载对话框
|
||||||
TopSlideNotification.show(
|
// TopSlideNotification.show(
|
||||||
Get.context!,
|
// Get.context!,
|
||||||
text: "设备连接失败".tr,
|
// text: "设备连接失败".tr,
|
||||||
textColor: themeController.currentColor.sc9,
|
// textColor: themeController.currentColor.sc9,
|
||||||
);
|
// );
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
|
|
||||||
// 等待扫描完成
|
// // 等待扫描完成
|
||||||
await Future.delayed(Duration(seconds: 20));
|
// await Future.delayed(Duration(seconds: 20));
|
||||||
} catch (e) {
|
// } catch (e) {
|
||||||
timeoutTimer?.cancel();
|
// timeoutTimer?.cancel();
|
||||||
Navigator.of(Get.context!).pop(); // 关闭加载对话框
|
// Navigator.of(Get.context!).pop(); // 关闭加载对话框
|
||||||
TopSlideNotification.show(
|
// TopSlideNotification.show(
|
||||||
Get.context!,
|
// Get.context!,
|
||||||
text: "扫描过程中发生错误".tr,
|
// text: "扫描过程中发生错误".tr,
|
||||||
textColor: themeController.currentColor.sc9,
|
// textColor: themeController.currentColor.sc9,
|
||||||
);
|
// );
|
||||||
} finally {
|
// } finally {
|
||||||
timeoutTimer?.cancel();
|
// timeoutTimer?.cancel();
|
||||||
await FlutterBluePlus.stopScan();
|
// await FlutterBluePlus.stopScan();
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
double _calculateMaxMenuItemWidth(List<String> texts, TextStyle style) {
|
double _calculateMaxMenuItemWidth(List<String> texts, TextStyle style) {
|
||||||
@@ -1448,6 +1449,18 @@ class _DeviceDataComponentWidgetState extends State<DeviceDataComponentWidget> {
|
|||||||
|
|
||||||
return iconWidth + spacing + maxTextWidth + horizontalPadding;
|
return iconWidth + spacing + maxTextWidth + horizontalPadding;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int _getSignalLevel(int signal) {
|
||||||
|
if (signal <= 25) {
|
||||||
|
return 1;
|
||||||
|
} else if (signal <= 50) {
|
||||||
|
return 2;
|
||||||
|
} else if (signal <= 75) {
|
||||||
|
return 3;
|
||||||
|
} else {
|
||||||
|
return 4;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_showBluetoothNotEnabledDialog() async {
|
_showBluetoothNotEnabledDialog() async {
|
||||||
|
|||||||
@@ -85,7 +85,7 @@ class _EPageState extends State<BindDeviceSuccess> {
|
|||||||
highlightColor: Colors
|
highlightColor: Colors
|
||||||
.grey, // 可以设置为 themeController.currentColor.sc3 之类
|
.grey, // 可以设置为 themeController.currentColor.sc3 之类
|
||||||
borderRadius: 8.rpx,
|
borderRadius: 8.rpx,
|
||||||
padding: EdgeInsets.all(0.rpx), // 增加可点击区域
|
padding: EdgeInsets.all(8.rpx), // 增加可点击区域
|
||||||
child: SvgPicture.asset(
|
child: SvgPicture.asset(
|
||||||
'assets/img/icon/close.svg',
|
'assets/img/icon/close.svg',
|
||||||
width: 25.rpx,
|
width: 25.rpx,
|
||||||
@@ -101,215 +101,210 @@ class _EPageState extends State<BindDeviceSuccess> {
|
|||||||
actions: [],
|
actions: [],
|
||||||
centerTitle: false,
|
centerTitle: false,
|
||||||
),
|
),
|
||||||
|
|
||||||
body: SafeArea(
|
body: SafeArea(
|
||||||
top: true,
|
top: true,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: EdgeInsetsDirectional.fromSTEB(113.rpx, 0, 113.rpx, 0),
|
padding: EdgeInsetsDirectional.fromSTEB(113.rpx, 0, 113.rpx, 0),
|
||||||
child: SingleChildScrollView(
|
child: Column(
|
||||||
child: Column(
|
mainAxisSize: MainAxisSize.max,
|
||||||
mainAxisSize: MainAxisSize.max,
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Padding(
|
Container(
|
||||||
padding:
|
height: bodySize.maxHeight * 0.15,
|
||||||
EdgeInsetsDirectional.fromSTEB(0, 74.rpx, 0, 0),
|
),
|
||||||
child: Container(
|
Padding(
|
||||||
width: 124.rpx,
|
padding: EdgeInsetsDirectional.fromSTEB(0, 0.rpx, 0, 0),
|
||||||
height: 124.rpx,
|
child: Container(
|
||||||
// width: double.infinity,
|
width: 124.rpx,
|
||||||
decoration: BoxDecoration(),
|
height: 124.rpx,
|
||||||
child: SvgPicture.asset(
|
// width: double.infinity,
|
||||||
'assets/img/icon/tick.svg',
|
decoration: BoxDecoration(),
|
||||||
fit: BoxFit.cover,
|
child: SvgPicture.asset(
|
||||||
color: themeController.currentColor.sc3,
|
'assets/img/icon/tick.svg',
|
||||||
|
fit: BoxFit.cover,
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(0, 42.rpx, 0, 0),
|
||||||
|
child: Container(
|
||||||
|
width: double.infinity,
|
||||||
|
decoration: BoxDecoration(),
|
||||||
|
child: Align(
|
||||||
|
alignment: AlignmentDirectional(0, 0),
|
||||||
|
child: Text(
|
||||||
|
'绑定成功.绑定成功'.tr,
|
||||||
|
style: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
fontFamily: 'Inter',
|
||||||
|
fontSize: 48.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
),
|
||||||
padding:
|
Padding(
|
||||||
EdgeInsetsDirectional.fromSTEB(0, 42.rpx, 0, 0),
|
padding: EdgeInsetsDirectional.fromSTEB(0, 65.rpx, 0, 0),
|
||||||
child: Container(
|
child: Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
decoration: BoxDecoration(),
|
decoration: BoxDecoration(),
|
||||||
child: Align(
|
child: Align(
|
||||||
alignment: AlignmentDirectional(0, 0),
|
alignment: AlignmentDirectional(0, 0),
|
||||||
child: Text(
|
child: Text(
|
||||||
'绑定成功.绑定成功'.tr,
|
'绑定成功.分享标题'.tr,
|
||||||
style: FlutterFlowTheme.of(context)
|
style: FlutterFlowTheme.of(context)
|
||||||
.bodyMedium
|
.bodyMedium
|
||||||
.override(
|
.override(
|
||||||
fontFamily: 'Inter',
|
fontFamily: 'Inter',
|
||||||
fontSize: 48.rpx,
|
fontSize: 30.rpx,
|
||||||
letterSpacing: 0.0,
|
letterSpacing: 0.0,
|
||||||
color: themeController.currentColor.sc3,
|
color: themeController.currentColor.sc4,
|
||||||
),
|
),
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
),
|
||||||
padding:
|
Padding(
|
||||||
EdgeInsetsDirectional.fromSTEB(0, 265.rpx, 0, 0),
|
padding: EdgeInsetsDirectional.fromSTEB(0, 48.rpx, 0, 0),
|
||||||
child: Container(
|
child: Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
decoration: BoxDecoration(),
|
decoration: BoxDecoration(),
|
||||||
child: Align(
|
child: Align(
|
||||||
alignment: AlignmentDirectional(0, 0),
|
alignment: AlignmentDirectional(-1, 0),
|
||||||
child: Text(
|
child: Text(
|
||||||
'绑定成功.分享标题'.tr,
|
'绑定成功.分享内容'.tr,
|
||||||
style: FlutterFlowTheme.of(context)
|
style: FlutterFlowTheme.of(context)
|
||||||
.bodyMedium
|
.bodyMedium
|
||||||
.override(
|
.override(
|
||||||
fontFamily: 'Inter',
|
fontFamily: 'Inter',
|
||||||
fontSize: 30.rpx,
|
fontSize: 26.rpx,
|
||||||
letterSpacing: 0.0,
|
letterSpacing: 0.0,
|
||||||
color: themeController.currentColor.sc3,
|
color: themeController.currentColor.sc4,
|
||||||
),
|
),
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
),
|
||||||
padding:
|
Padding(
|
||||||
EdgeInsetsDirectional.fromSTEB(0, 48.rpx, 0, 0),
|
padding: EdgeInsetsDirectional.fromSTEB(0, 110.rpx, 0, 0),
|
||||||
child: Container(
|
child: CustomCard(
|
||||||
width: double.infinity,
|
borderRadius:
|
||||||
decoration: BoxDecoration(),
|
AppConstants().button_container_radius, // 圆角半径
|
||||||
child: Align(
|
onTap: () async {
|
||||||
alignment: AlignmentDirectional(-1, 0),
|
PersonController personController = Get.find();
|
||||||
child: Text(
|
String deviceID =
|
||||||
'绑定成功.分享内容'.tr,
|
personController.currentPersonId.value;
|
||||||
style: FlutterFlowTheme.of(context)
|
|
||||||
.bodyMedium
|
|
||||||
.override(
|
|
||||||
fontFamily: 'Inter',
|
|
||||||
fontSize: 30.rpx,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
color: themeController.currentColor.sc3,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding:
|
|
||||||
EdgeInsetsDirectional.fromSTEB(0, 110.rpx, 0, 0),
|
|
||||||
child: CustomCard(
|
|
||||||
borderRadius:
|
|
||||||
AppConstants().button_container_radius, // 圆角半径
|
|
||||||
onTap: () async {
|
|
||||||
PersonController personController = Get.find();
|
|
||||||
String deviceID =
|
|
||||||
personController.currentPersonId.value;
|
|
||||||
|
|
||||||
BodyDeviceController bodyDeviceController =
|
BodyDeviceController bodyDeviceController =
|
||||||
Get.find();
|
Get.find();
|
||||||
await bodyDeviceController.getDeviceList();
|
await bodyDeviceController.getDeviceList();
|
||||||
List deviceList =
|
List deviceList =
|
||||||
bodyDeviceController.deviceList.value;
|
bodyDeviceController.deviceList.value;
|
||||||
|
|
||||||
if (deviceList != null && deviceList.isNotEmpty) {
|
if (deviceList != null && deviceList.isNotEmpty) {
|
||||||
// 查找第一个 _id 匹配的设备
|
// 查找第一个 _id 匹配的设备
|
||||||
final matchedDevice = deviceList.firstWhere(
|
final matchedDevice = deviceList.firstWhere(
|
||||||
(element) => element['_id'] == deviceID,
|
(element) => element['_id'] == deviceID,
|
||||||
orElse: () => null,
|
orElse: () => null,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (matchedDevice != null) {
|
if (matchedDevice != null) {
|
||||||
// 跳转并传入设备
|
// 跳转并传入设备
|
||||||
Get.toNamed("/deviceSharePage",
|
Get.toNamed("/deviceSharePage",
|
||||||
arguments: matchedDevice);
|
arguments: matchedDevice);
|
||||||
} else {
|
|
||||||
print("未找到匹配的设备");
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
print("设备列表为空");
|
print("未找到匹配的设备");
|
||||||
}
|
}
|
||||||
},
|
} else {
|
||||||
colors: [
|
print("设备列表为空");
|
||||||
// 渐变色
|
}
|
||||||
themeController.currentColor.sc1,
|
},
|
||||||
themeController.currentColor.sc2,
|
colors: [
|
||||||
],
|
// 渐变色
|
||||||
child: Container(
|
themeController.currentColor.sc1,
|
||||||
width: MediaQuery.sizeOf(context).width * 0.66,
|
themeController.currentColor.sc2,
|
||||||
height: MediaQuery.sizeOf(context).height * 0.055,
|
],
|
||||||
constraints: BoxConstraints(
|
child: Container(
|
||||||
minWidth: 500.rpx,
|
width: MediaQuery.sizeOf(context).width * 0.66,
|
||||||
minHeight: 90.rpx,
|
height: MediaQuery.sizeOf(context).height * 0.055,
|
||||||
),
|
constraints: BoxConstraints(
|
||||||
child: Row(
|
minWidth: 500.rpx,
|
||||||
mainAxisSize: MainAxisSize.max,
|
minHeight: 90.rpx,
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
),
|
||||||
children: [
|
child: Row(
|
||||||
SvgPicture.asset(
|
mainAxisSize: MainAxisSize.max,
|
||||||
'assets/img/icon/share.svg',
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
width: 25.rpx,
|
children: [
|
||||||
height: 25.rpx, // 如果 SVG 中没有固定颜色,可以这样设置
|
SvgPicture.asset(
|
||||||
color: Colors.white,
|
'assets/img/icon/share.svg',
|
||||||
),
|
width: 25.rpx,
|
||||||
Text(
|
height: 25.rpx, // 如果 SVG 中没有固定颜色,可以这样设置
|
||||||
'绑定成功.立即分享'.tr,
|
color: Colors.white,
|
||||||
style: FlutterFlowTheme.of(context)
|
),
|
||||||
.bodyMedium
|
Text(
|
||||||
.override(
|
'绑定成功.立即分享'.tr,
|
||||||
color: themeController.currentColor.sc3,
|
style: FlutterFlowTheme.of(context)
|
||||||
fontFamily: 'Inter',
|
.bodyMedium
|
||||||
fontSize: AppConstants()
|
.override(
|
||||||
.normal_text_fontSize, // 自定义字体大小
|
color: themeController.currentColor.sc3,
|
||||||
letterSpacing: 0.0,
|
fontFamily: 'Inter',
|
||||||
),
|
fontSize: AppConstants()
|
||||||
),
|
.normal_text_fontSize, // 自定义字体大小
|
||||||
].divide(SizedBox(width: 17.rpx)),
|
letterSpacing: 0.0,
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(width: 17.rpx)),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
),
|
||||||
padding:
|
Padding(
|
||||||
EdgeInsetsDirectional.fromSTEB(0, 18.rpx, 0, 0),
|
padding: EdgeInsetsDirectional.fromSTEB(0, 18.rpx, 0, 0),
|
||||||
child: CustomCard(
|
child: CustomCard(
|
||||||
borderRadius:
|
borderRadius:
|
||||||
AppConstants().button_container_radius, // 圆角半径
|
AppConstants().button_container_radius, // 圆角半径
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Get.offAllNamed("/mianPageBottomChange");
|
Get.offAllNamed("/mianPageBottomChange");
|
||||||
},
|
},
|
||||||
colors: [
|
colors: [
|
||||||
// 渐变色
|
// 渐变色
|
||||||
themeController.currentColor.sc1,
|
themeController.currentColor.sc1,
|
||||||
themeController.currentColor.sc2,
|
themeController.currentColor.sc2,
|
||||||
],
|
],
|
||||||
|
|
||||||
child: Container(
|
child: Container(
|
||||||
width: MediaQuery.sizeOf(context).width * 0.66,
|
width: MediaQuery.sizeOf(context).width * 0.66,
|
||||||
height: MediaQuery.sizeOf(context).height * 0.055,
|
height: MediaQuery.sizeOf(context).height * 0.055,
|
||||||
constraints: BoxConstraints(
|
constraints: BoxConstraints(
|
||||||
minWidth: 500.rpx,
|
minWidth: 500.rpx,
|
||||||
minHeight: 90.rpx,
|
minHeight: 90.rpx,
|
||||||
),
|
),
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisSize: MainAxisSize.max,
|
mainAxisSize: MainAxisSize.max,
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
'绑定成功.返回'.tr,
|
'绑定成功.返回'.tr,
|
||||||
style: FlutterFlowTheme.of(context)
|
style: FlutterFlowTheme.of(context)
|
||||||
.bodyMedium
|
.bodyMedium
|
||||||
.override(
|
.override(
|
||||||
color: themeController.currentColor.sc3,
|
color: themeController.currentColor.sc3,
|
||||||
fontFamily: 'Inter',
|
fontFamily: 'Inter',
|
||||||
fontSize: AppConstants()
|
fontSize: AppConstants()
|
||||||
.normal_text_fontSize, // 自定义字体大小
|
.normal_text_fontSize, // 自定义字体大小
|
||||||
letterSpacing: 0.0,
|
letterSpacing: 0.0,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
].divide(SizedBox(width: 17.rpx)),
|
].divide(SizedBox(width: 17.rpx)),
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
),
|
||||||
),
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -318,51 +313,4 @@ class _EPageState extends State<BindDeviceSuccess> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildDeviceCard(BuildContext context,
|
|
||||||
{required String title, required String imageUrl, required String type}) {
|
|
||||||
return CustomCard(
|
|
||||||
borderRadius: 20.rpx, // 圆角大小
|
|
||||||
onTap: () {
|
|
||||||
if (type != null) {
|
|
||||||
if (type == '1') {
|
|
||||||
Get.toNamed("/blueteethDevice");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
colors: [themeController.currentColor.sc17], // 背景色
|
|
||||||
child: Container(
|
|
||||||
width: double.infinity,
|
|
||||||
height: MediaQuery.sizeOf(context).height * 0.135,
|
|
||||||
constraints: BoxConstraints(
|
|
||||||
minHeight: 220.rpx,
|
|
||||||
),
|
|
||||||
padding: EdgeInsetsDirectional.fromSTEB(77.rpx, 0, 21.rpx, 0),
|
|
||||||
child: Row(
|
|
||||||
mainAxisSize: MainAxisSize.max,
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
Text(
|
|
||||||
title,
|
|
||||||
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
|
||||||
fontFamily: 'Inter',
|
|
||||||
color: const Color(0xFFC2CED7),
|
|
||||||
fontSize: 30.rpx,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
ClipRRect(
|
|
||||||
borderRadius: BorderRadius.circular(8.rpx),
|
|
||||||
child: Image.asset(
|
|
||||||
imageUrl,
|
|
||||||
width: 212.rpx,
|
|
||||||
height: 168.rpx,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -98,14 +98,14 @@ class _BlueteethDevicePageState extends State<BlueteethDevicePage> {
|
|||||||
context: context,
|
context: context,
|
||||||
builder: (BuildContext context) {
|
builder: (BuildContext context) {
|
||||||
return AlertDialog(
|
return AlertDialog(
|
||||||
title: Text("权限提示"),
|
title: Text("权限提示".tr),
|
||||||
content: Text("应用需要蓝牙和位置权限才能扫描设备。请授予权限。"),
|
content: Text("应用需要蓝牙和位置权限才能扫描设备。请授予权限。".tr),
|
||||||
actions: [
|
actions: [
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
Navigator.of(context).pop();
|
Navigator.of(context).pop();
|
||||||
},
|
},
|
||||||
child: Text("确定"),
|
child: Text("确定".tr),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -414,172 +414,175 @@ void showConfirmDialog(
|
|||||||
ThemeController themeController = Get.find();
|
ThemeController themeController = Get.find();
|
||||||
BlueteethBindController blueteethBindController = Get.find();
|
BlueteethBindController blueteethBindController = Get.find();
|
||||||
|
|
||||||
showDialog(
|
try {
|
||||||
context: context,
|
showDialog(
|
||||||
barrierDismissible: true,
|
context: context,
|
||||||
barrierColor: Colors.black.withOpacity(0.5), // 背景模糊色
|
barrierDismissible: true,
|
||||||
builder: (BuildContext context) {
|
barrierColor: Colors.black.withOpacity(0.5), // 背景模糊色
|
||||||
return FrostedDialog(
|
builder: (BuildContext context) {
|
||||||
blurSigma: 3.0,
|
return FrostedDialog(
|
||||||
child: Container(
|
blurSigma: 3.0,
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: themeController.currentColor.sc17,
|
|
||||||
borderRadius: BorderRadius.circular(20.0),
|
|
||||||
),
|
|
||||||
padding: EdgeInsetsDirectional.fromSTEB(31.rpx, 0, 31.rpx, 0),
|
|
||||||
child: Container(
|
child: Container(
|
||||||
width: double.infinity,
|
decoration: BoxDecoration(
|
||||||
constraints: BoxConstraints(
|
color: themeController.currentColor.sc17,
|
||||||
maxHeight: MediaQuery.sizeOf(context).height * 0.656,
|
borderRadius: BorderRadius.circular(20.0),
|
||||||
),
|
),
|
||||||
child: Column(
|
padding: EdgeInsetsDirectional.fromSTEB(31.rpx, 0, 31.rpx, 0),
|
||||||
mainAxisSize: MainAxisSize.min,
|
child: Container(
|
||||||
children: [
|
width: double.infinity,
|
||||||
// 标题
|
constraints: BoxConstraints(
|
||||||
Row(
|
maxHeight: MediaQuery.sizeOf(context).height * 0.656,
|
||||||
mainAxisAlignment: MainAxisAlignment.end,
|
),
|
||||||
children: [
|
child: Column(
|
||||||
ClickableContainer(
|
mainAxisSize: MainAxisSize.min,
|
||||||
backgroundColor: Colors.transparent, // 容器背景色
|
children: [
|
||||||
highlightColor:
|
// 标题
|
||||||
themeController.currentColor.sc21, // 点击时的背景色
|
Row(
|
||||||
padding: EdgeInsets.zero, // 这里去掉外部的 padding,避免影响点击范围
|
mainAxisAlignment: MainAxisAlignment.end,
|
||||||
onTap: () {
|
|
||||||
Get.back();
|
|
||||||
onCancel();
|
|
||||||
},
|
|
||||||
child: Padding(
|
|
||||||
// padding:
|
|
||||||
// EdgeInsetsDirectional.fromSTEB(0, 33.rpx, 0, 0.rpx),
|
|
||||||
padding: EdgeInsetsDirectional.fromSTEB(
|
|
||||||
33.rpx, 33.rpx, 33.rpx, 33.rpx),
|
|
||||||
child: SvgPicture.asset(
|
|
||||||
'assets/img/icon/close.svg',
|
|
||||||
width: 25.rpx,
|
|
||||||
height: 25.rpx, // 如果 SVG 中没有固定颜色,使用 color 设置
|
|
||||||
color: themeController.currentColor.sc3,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Align(
|
|
||||||
alignment: AlignmentDirectional(0, 0),
|
|
||||||
child: Padding(
|
|
||||||
padding: EdgeInsetsDirectional.fromSTEB(
|
|
||||||
33.rpx, 60.rpx, 33.rpx, 33.rpx),
|
|
||||||
child: Text(
|
|
||||||
title,
|
|
||||||
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
|
||||||
fontFamily: 'Inter',
|
|
||||||
fontSize: 30.rpx,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
color: themeController.currentColor.sc3,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: EdgeInsetsDirectional.fromSTEB(
|
|
||||||
33.rpx, 0.rpx, 33.rpx, 0.rpx),
|
|
||||||
child: widget,
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: EdgeInsetsDirectional.fromSTEB(
|
|
||||||
33.rpx, 58.rpx, 33.rpx, 60.rpx),
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
children: [
|
||||||
CustomCard(
|
ClickableContainer(
|
||||||
borderRadius: AppConstants().button_container_radius,
|
backgroundColor: Colors.transparent, // 容器背景色
|
||||||
onTap: () async {
|
highlightColor:
|
||||||
|
themeController.currentColor.sc21, // 点击时的背景色
|
||||||
|
padding: EdgeInsets.zero, // 这里去掉外部的 padding,避免影响点击范围
|
||||||
|
onTap: () {
|
||||||
Get.back();
|
Get.back();
|
||||||
onCancel();
|
onCancel();
|
||||||
},
|
},
|
||||||
colors: [
|
child: Padding(
|
||||||
themeController.currentColor.sc1,
|
// padding:
|
||||||
themeController.currentColor.sc2,
|
// EdgeInsetsDirectional.fromSTEB(0, 33.rpx, 0, 0.rpx),
|
||||||
],
|
padding: EdgeInsetsDirectional.fromSTEB(
|
||||||
child: Container(
|
33.rpx, 33.rpx, 33.rpx, 33.rpx),
|
||||||
width: MediaQuery.sizeOf(context).width * 0.115,
|
child: SvgPicture.asset(
|
||||||
height: MediaQuery.sizeOf(context).height * 0.055,
|
'assets/img/icon/close.svg',
|
||||||
constraints: BoxConstraints(
|
width: 25.rpx,
|
||||||
minWidth: 160.rpx,
|
height: 25.rpx, // 如果 SVG 中没有固定颜色,使用 color 设置
|
||||||
minHeight: 90.rpx,
|
color: themeController.currentColor.sc3,
|
||||||
),
|
|
||||||
child: Row(
|
|
||||||
mainAxisSize: MainAxisSize.max,
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
Text(
|
|
||||||
"蓝牙绑定.否".tr,
|
|
||||||
style: FlutterFlowTheme.of(context)
|
|
||||||
.bodyMedium
|
|
||||||
.override(
|
|
||||||
color: themeController.currentColor.sc3,
|
|
||||||
fontFamily: 'Inter',
|
|
||||||
fontSize:
|
|
||||||
AppConstants().normal_text_fontSize,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
].divide(SizedBox(width: 17.rpx)),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
CustomCard(
|
],
|
||||||
borderRadius: AppConstants().button_container_radius,
|
|
||||||
onTap: () {
|
|
||||||
Get.back();
|
|
||||||
onConfirm();
|
|
||||||
// await Future.delayed(Duration(milliseconds: 300));
|
|
||||||
},
|
|
||||||
colors: [
|
|
||||||
themeController.currentColor.sc1,
|
|
||||||
themeController.currentColor.sc2,
|
|
||||||
],
|
|
||||||
child: Container(
|
|
||||||
width: MediaQuery.sizeOf(context).width * 0.215,
|
|
||||||
height: MediaQuery.sizeOf(context).height * 0.055,
|
|
||||||
constraints: BoxConstraints(
|
|
||||||
minWidth: 160.rpx,
|
|
||||||
minHeight: 90.rpx,
|
|
||||||
),
|
|
||||||
child: Row(
|
|
||||||
mainAxisSize: MainAxisSize.max,
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
Text(
|
|
||||||
"蓝牙绑定.是".tr,
|
|
||||||
style: FlutterFlowTheme.of(context)
|
|
||||||
.bodyMedium
|
|
||||||
.override(
|
|
||||||
color: themeController.currentColor.sc3,
|
|
||||||
fontFamily: 'Inter',
|
|
||||||
fontSize:
|
|
||||||
AppConstants().normal_text_fontSize,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
].divide(SizedBox(width: 17.rpx)),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
].divide(SizedBox(
|
|
||||||
width: 70.rpx,
|
|
||||||
)),
|
|
||||||
),
|
),
|
||||||
),
|
Align(
|
||||||
],
|
alignment: AlignmentDirectional(0, 0),
|
||||||
|
child: Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(
|
||||||
|
33.rpx, 60.rpx, 33.rpx, 33.rpx),
|
||||||
|
child: Text(
|
||||||
|
title,
|
||||||
|
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
||||||
|
fontFamily: 'Inter',
|
||||||
|
fontSize: 30.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(
|
||||||
|
33.rpx, 0.rpx, 33.rpx, 0.rpx),
|
||||||
|
child: widget,
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(
|
||||||
|
33.rpx, 58.rpx, 33.rpx, 60.rpx),
|
||||||
|
child: Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
CustomCard(
|
||||||
|
borderRadius: AppConstants().button_container_radius,
|
||||||
|
onTap: () async {
|
||||||
|
Get.back();
|
||||||
|
onCancel();
|
||||||
|
},
|
||||||
|
colors: [
|
||||||
|
themeController.currentColor.sc1,
|
||||||
|
themeController.currentColor.sc2,
|
||||||
|
],
|
||||||
|
child: Container(
|
||||||
|
width: MediaQuery.sizeOf(context).width * 0.115,
|
||||||
|
height: MediaQuery.sizeOf(context).height * 0.055,
|
||||||
|
constraints: BoxConstraints(
|
||||||
|
minWidth: 160.rpx,
|
||||||
|
minHeight: 90.rpx,
|
||||||
|
),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
"蓝牙绑定.否".tr,
|
||||||
|
style: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
fontFamily: 'Inter',
|
||||||
|
fontSize:
|
||||||
|
AppConstants().normal_text_fontSize,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(width: 17.rpx)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
CustomCard(
|
||||||
|
borderRadius: AppConstants().button_container_radius,
|
||||||
|
onTap: () {
|
||||||
|
Get.back();
|
||||||
|
onConfirm();
|
||||||
|
// await Future.delayed(Duration(milliseconds: 300));
|
||||||
|
},
|
||||||
|
colors: [
|
||||||
|
themeController.currentColor.sc1,
|
||||||
|
themeController.currentColor.sc2,
|
||||||
|
],
|
||||||
|
child: Container(
|
||||||
|
width: MediaQuery.sizeOf(context).width * 0.215,
|
||||||
|
height: MediaQuery.sizeOf(context).height * 0.055,
|
||||||
|
constraints: BoxConstraints(
|
||||||
|
minWidth: 160.rpx,
|
||||||
|
minHeight: 90.rpx,
|
||||||
|
),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
"蓝牙绑定.是".tr,
|
||||||
|
style: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
fontFamily: 'Inter',
|
||||||
|
fontSize:
|
||||||
|
AppConstants().normal_text_fontSize,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(width: 17.rpx)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(
|
||||||
|
width: 70.rpx,
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
);
|
||||||
);
|
},
|
||||||
},
|
);
|
||||||
);
|
} catch (e) {
|
||||||
|
print(e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void showSingleConfirmDialog(
|
void showSingleConfirmDialog(
|
||||||
BuildContext context,
|
BuildContext context,
|
||||||
Widget widget,
|
Widget widget,
|
||||||
@@ -667,7 +670,6 @@ void showSingleConfirmDialog(
|
|||||||
child: Row(
|
child: Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
|
|
||||||
CustomCard(
|
CustomCard(
|
||||||
borderRadius: AppConstants().button_container_radius,
|
borderRadius: AppConstants().button_container_radius,
|
||||||
onTap: () {
|
onTap: () {
|
||||||
@@ -706,7 +708,6 @@ void showSingleConfirmDialog(
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
||||||
].divide(SizedBox(
|
].divide(SizedBox(
|
||||||
width: 70.rpx,
|
width: 70.rpx,
|
||||||
)),
|
)),
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -46,8 +46,11 @@ class _WifiPageState extends State<WifiPage> {
|
|||||||
blueteethBindController.wifiStatus = 0.obs;
|
blueteethBindController.wifiStatus = 0.obs;
|
||||||
blueteethBindController.connect_wifi.value = {};
|
blueteethBindController.connect_wifi.value = {};
|
||||||
blueteethBindController.selectWifi.value = {};
|
blueteethBindController.selectWifi.value = {};
|
||||||
|
if (widget.type != null) {
|
||||||
if (widget.type == null) {
|
blueteethBindController.wifiStatus.value =
|
||||||
|
widget.type['status']['status'];
|
||||||
|
}
|
||||||
|
if (widget.type['mac'] == null) {
|
||||||
THapp bledevice = blueteethBindController.currentDevice!;
|
THapp bledevice = blueteethBindController.currentDevice!;
|
||||||
bledevice.device.connect().then((Value) {
|
bledevice.device.connect().then((Value) {
|
||||||
var res2 = bledevice.isConnected;
|
var res2 = bledevice.isConnected;
|
||||||
@@ -85,11 +88,18 @@ class _WifiPageState extends State<WifiPage> {
|
|||||||
Get.toNamed("/calibrationPage", arguments: 1);
|
Get.toNamed("/calibrationPage", arguments: 1);
|
||||||
});
|
});
|
||||||
} else if (aa == 'unknown') {
|
} else if (aa == 'unknown') {
|
||||||
TopSlideNotification.show(
|
// TopSlideNotification.show(
|
||||||
context,
|
// context,
|
||||||
text: "获取设备网络类型失败".tr,
|
// text: "获取设备网络类型失败".tr,
|
||||||
textColor: themeController.currentColor.sc9,
|
// textColor: themeController.currentColor.sc9,
|
||||||
);
|
// );
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
|
TopSlideNotification.show(
|
||||||
|
context,
|
||||||
|
text: "获取设备网络类型失败".tr,
|
||||||
|
textColor: themeController.currentColor.sc9,
|
||||||
|
);
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
await initWifiStatusAndWifiList();
|
await initWifiStatusAndWifiList();
|
||||||
}
|
}
|
||||||
@@ -106,7 +116,7 @@ class _WifiPageState extends State<WifiPage> {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
dealWifi(widget.type).then((aa) {
|
dealWifi(widget.type['mac']).then((aa) {
|
||||||
print("object");
|
print("object");
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -188,7 +198,7 @@ class _WifiPageState extends State<WifiPage> {
|
|||||||
left: 0,
|
left: 0,
|
||||||
child: returnIconButtom,
|
child: returnIconButtom,
|
||||||
),
|
),
|
||||||
if (widget.type == null)
|
if (widget.type['mac'] == null)
|
||||||
Positioned(
|
Positioned(
|
||||||
right: 20.rpx,
|
right: 20.rpx,
|
||||||
child: CustomCard(
|
child: CustomCard(
|
||||||
|
|||||||
@@ -505,10 +505,11 @@ class _EPageState extends State<LoginPage> {
|
|||||||
// text: "待开发功能".tr);
|
// text: "待开发功能".tr);
|
||||||
// },
|
// },
|
||||||
onTap: () async {
|
onTap: () async {
|
||||||
if (loginController.model.isIos == true &&
|
//loginController.model.isIos == true &&
|
||||||
loginController
|
if (loginController
|
||||||
.model.isWeChatNotInstalled !=
|
.model.isWeChatNotInstalled !=
|
||||||
true) {
|
true) {
|
||||||
|
TopSlideNotification.show(context,text: "微信安装提示".tr,textColor: themeController.currentColor.sc9);
|
||||||
} else {
|
} else {
|
||||||
if (loginController
|
if (loginController
|
||||||
.model.register_agree ==
|
.model.register_agree ==
|
||||||
|
|||||||
@@ -825,9 +825,33 @@ class _OtherLoginPageState extends State<OtherLoginPage> {
|
|||||||
highlightColor: Colors.grey, // 点击水波纹颜色
|
highlightColor: Colors.grey, // 点击水波纹颜色
|
||||||
borderRadius: 999.rpx,
|
borderRadius: 999.rpx,
|
||||||
padding: EdgeInsets.zero,
|
padding: EdgeInsets.zero,
|
||||||
onTap: () {
|
onTap: () async {
|
||||||
TopSlideNotification.show(context,
|
//loginController.model.isIos == true &&
|
||||||
text: "待开发功能".tr);
|
if (loginController
|
||||||
|
.model.isWeChatNotInstalled !=
|
||||||
|
true) {
|
||||||
|
TopSlideNotification.show(context,
|
||||||
|
text: "微信安装提示".tr,
|
||||||
|
textColor:
|
||||||
|
themeController.currentColor.sc9);
|
||||||
|
} else {
|
||||||
|
if (loginController
|
||||||
|
.model.register_agree ==
|
||||||
|
null ||
|
||||||
|
loginController
|
||||||
|
.model.register_agree !=
|
||||||
|
true) {
|
||||||
|
TopSlideNotification.show(
|
||||||
|
context,
|
||||||
|
text: "登录页.未同意协议".tr,
|
||||||
|
textColor:
|
||||||
|
themeController.currentColor.sc9,
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await loginController
|
||||||
|
.wxLoginSendAuth(context);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
child: Container(
|
child: Container(
|
||||||
width: 91.rpx,
|
width: 91.rpx,
|
||||||
|
|||||||
@@ -153,6 +153,7 @@ class _MessageWidgetWidgetState extends State<MessageWidgetWidget> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ class _ApplyRepairPageState extends State<ApplyRepairPage> {
|
|||||||
await deviceTypeController.getDeviceType(); // 等待数据加载
|
await deviceTypeController.getDeviceType(); // 等待数据加载
|
||||||
if (deviceTypeController.deviceTypeList.isNotEmpty) {
|
if (deviceTypeController.deviceTypeList.isNotEmpty) {
|
||||||
repairController.device_type.value =
|
repairController.device_type.value =
|
||||||
deviceTypeController.deviceTypeList.first['_id'];
|
deviceTypeController.deviceTypeList.first['type'];
|
||||||
}
|
}
|
||||||
await bodyDeviceController.getDeviceList();
|
await bodyDeviceController.getDeviceList();
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
@@ -80,7 +80,7 @@ class _ApplyRepairPageState extends State<ApplyRepairPage> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
if (deviceTypeController.deviceTypeList.isNotEmpty) {
|
if (deviceTypeController.deviceTypeList.isNotEmpty) {
|
||||||
repairController.device_type.value =
|
repairController.device_type.value =
|
||||||
deviceTypeController.deviceTypeList.first['_id'];
|
deviceTypeController.deviceTypeList.first['type'];
|
||||||
}
|
}
|
||||||
if (bodyDeviceController.deviceList.isNotEmpty) {
|
if (bodyDeviceController.deviceList.isNotEmpty) {
|
||||||
repairController.deviceListId = bodyDeviceController.deviceList
|
repairController.deviceListId = bodyDeviceController.deviceList
|
||||||
@@ -169,7 +169,7 @@ class _ApplyRepairPageState extends State<ApplyRepairPage> {
|
|||||||
AppConstants().button_container_radius,
|
AppConstants().button_container_radius,
|
||||||
onTap: () async {
|
onTap: () async {
|
||||||
repairController.device_type.value =
|
repairController.device_type.value =
|
||||||
deviceType['_id'];
|
deviceType['type'];
|
||||||
repairController.repairList
|
repairController.repairList
|
||||||
.clear(); // 清空旧数据
|
.clear(); // 清空旧数据
|
||||||
repairController.repairList
|
repairController.repairList
|
||||||
@@ -180,7 +180,7 @@ class _ApplyRepairPageState extends State<ApplyRepairPage> {
|
|||||||
repairController
|
repairController
|
||||||
.updateAll(); // 手动触发更新(如果未自动更新)
|
.updateAll(); // 手动触发更新(如果未自动更新)
|
||||||
},
|
},
|
||||||
colors: deviceType['_id'] ==
|
colors: deviceType['type'] ==
|
||||||
repairController.device_type.value
|
repairController.device_type.value
|
||||||
? [
|
? [
|
||||||
themeController.currentColor.sc1,
|
themeController.currentColor.sc1,
|
||||||
@@ -328,7 +328,7 @@ class _ApplyRepairPageState extends State<ApplyRepairPage> {
|
|||||||
String queryUrl =
|
String queryUrl =
|
||||||
"$serviceAddress$serviceName$serviceApi";
|
"$serviceAddress$serviceName$serviceApi";
|
||||||
var data = {
|
var data = {
|
||||||
"device": repairController.repairList,
|
"device": repairController.repairList.value,
|
||||||
"type": repairController.device_type.value,
|
"type": repairController.device_type.value,
|
||||||
"contacts": {
|
"contacts": {
|
||||||
"name": repairController.name.value,
|
"name": repairController.name.value,
|
||||||
@@ -340,8 +340,19 @@ class _ApplyRepairPageState extends State<ApplyRepairPage> {
|
|||||||
method: MyHttpMethod.post,
|
method: MyHttpMethod.post,
|
||||||
queryUrl: queryUrl,
|
queryUrl: queryUrl,
|
||||||
data: data,
|
data: data,
|
||||||
|
onSuccess: (res) {
|
||||||
|
TopSlideNotification.show(context,
|
||||||
|
text: res.msg!);
|
||||||
|
// Get.back();
|
||||||
|
Get.toNamed("/applyRepairSuccess");
|
||||||
|
},
|
||||||
|
onFailure: (res) {
|
||||||
|
TopSlideNotification.show(context,
|
||||||
|
text: res.msg!,
|
||||||
|
textColor:
|
||||||
|
themeController.currentColor.sc9);
|
||||||
|
},
|
||||||
);
|
);
|
||||||
Get.back();
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
colors: [
|
colors: [
|
||||||
@@ -515,16 +526,32 @@ class _ApplyRepairPageState extends State<ApplyRepairPage> {
|
|||||||
// return "第 ${i + 1} 项问题描述未填写";
|
// return "第 ${i + 1} 项问题描述未填写";
|
||||||
return "问题描述未填写".tr;
|
return "问题描述未填写".tr;
|
||||||
}
|
}
|
||||||
|
if (item["issue"] != null && item["issue"].toString().trim().isNotEmpty) {
|
||||||
|
final issueText = item["issue"].toString().trim();
|
||||||
|
final charCount = issueText.runes.length;
|
||||||
|
|
||||||
|
if (charCount > 60) {
|
||||||
|
_scrollToKey(repairItemKeys[i]);
|
||||||
|
return "问题描述最多输入60个字".tr;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
_scrollToKey(repairItemKeys[i]);
|
||||||
|
return "问题描述不能为空".tr;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 检查联系人
|
// 检查联系人
|
||||||
if (repairController.name.trim().isEmpty) {
|
if (repairController.name.trim().isEmpty) {
|
||||||
_scrollToKey(contactKey);
|
_scrollToKey(contactKey);
|
||||||
return "联系人不能为空";
|
return "联系人不能为空".tr;
|
||||||
}
|
}
|
||||||
if (repairController.phone.trim().isEmpty) {
|
if (repairController.phone.trim().isEmpty) {
|
||||||
_scrollToKey(phoneKey);
|
_scrollToKey(phoneKey);
|
||||||
return "联系电话不能为空";
|
return "联系电话不能为空".tr;
|
||||||
|
}
|
||||||
|
if (!MyUtils.isValidPhoneNumber(repairController.phone.trim())) {
|
||||||
|
_scrollToKey(phoneKey);
|
||||||
|
return "无效的手机号码".tr;
|
||||||
}
|
}
|
||||||
|
|
||||||
return errormsg;
|
return errormsg;
|
||||||
|
|||||||
347
lib/pages/repair/apply_repair_success.dart
Normal file
347
lib/pages/repair/apply_repair_success.dart
Normal file
@@ -0,0 +1,347 @@
|
|||||||
|
import 'package:ef/ef.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_svg/svg.dart';
|
||||||
|
import 'package:flutterflow_ui/flutterflow_ui.dart';
|
||||||
|
import 'package:vbvs_app/common/color/appConstants.dart';
|
||||||
|
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||||
|
import 'package:vbvs_app/component/tool/ClickableContainer.dart';
|
||||||
|
import 'package:vbvs_app/component/tool/CustomCard.dart';
|
||||||
|
import 'package:vbvs_app/controller/device/blueteeth_bind_controller.dart';
|
||||||
|
import 'package:vbvs_app/controller/main_bottom/global_controller.dart';
|
||||||
|
import 'package:vbvs_app/controller/theme_controller/ThemeController.dart';
|
||||||
|
import 'package:vbvs_app/controller/user_info_controller.dart';
|
||||||
|
|
||||||
|
class ApplyRepairSuccess extends StatefulWidget {
|
||||||
|
const ApplyRepairSuccess({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<ApplyRepairSuccess> createState() => _ApplyRepairSuccessState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _ApplyRepairSuccessState extends State<ApplyRepairSuccess> {
|
||||||
|
GlobalController globalController = Get.find();
|
||||||
|
UserInfoController userInfoController = Get.find();
|
||||||
|
BlueteethBindController blueteethBindController = Get.find();
|
||||||
|
ThemeController themeController = Get.find();
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return LayoutBuilder(
|
||||||
|
builder: (context, bodySize) => GestureDetector(
|
||||||
|
onTap: () => FocusScope.of(context).unfocus(),
|
||||||
|
child: Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
image: DecorationImage(
|
||||||
|
image: AssetImage('assets/img/bgNoImg.png'), // 本地图片
|
||||||
|
fit: BoxFit.fill, // 填满整个 Container
|
||||||
|
),
|
||||||
|
),
|
||||||
|
child: Scaffold(
|
||||||
|
backgroundColor: Colors.transparent, // 加上这一行
|
||||||
|
appBar: AppBar(
|
||||||
|
backgroundColor: themeController.currentColor.sc17,
|
||||||
|
automaticallyImplyLeading: false,
|
||||||
|
iconTheme: IconThemeData(
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
),
|
||||||
|
titleSpacing: 0,
|
||||||
|
// leading: returnIconButtom,
|
||||||
|
title: Container(
|
||||||
|
width: double.infinity,
|
||||||
|
height: 180.rpx,
|
||||||
|
child: Stack(
|
||||||
|
alignment: Alignment.center,
|
||||||
|
children: [
|
||||||
|
/// 居中标题
|
||||||
|
Text(
|
||||||
|
'报修成功标题'.tr,
|
||||||
|
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
||||||
|
fontFamily: 'Readex Pro',
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
letterSpacing: 0,
|
||||||
|
fontSize: 30.rpx,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
/// 左边返回按钮
|
||||||
|
// Positioned(
|
||||||
|
// left: 0,
|
||||||
|
// child: returnIconButtom,
|
||||||
|
// ),
|
||||||
|
Positioned(
|
||||||
|
left: 40.rpx,
|
||||||
|
child: ClickableContainer(
|
||||||
|
onTap: () {
|
||||||
|
Get.offAllNamed("/mianPageBottomChange");
|
||||||
|
},
|
||||||
|
backgroundColor: Colors.transparent,
|
||||||
|
highlightColor: Colors
|
||||||
|
.grey, // 可以设置为 themeController.currentColor.sc3 之类
|
||||||
|
borderRadius: 8.rpx,
|
||||||
|
padding: EdgeInsets.all(8.rpx), // 增加可点击区域
|
||||||
|
child: SvgPicture.asset(
|
||||||
|
'assets/img/icon/close.svg',
|
||||||
|
width: 25.rpx,
|
||||||
|
height: 25.rpx,
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
actions: [],
|
||||||
|
centerTitle: false,
|
||||||
|
),
|
||||||
|
|
||||||
|
body: SafeArea(
|
||||||
|
top: true,
|
||||||
|
child: Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(113.rpx, 0, 113.rpx, 0),
|
||||||
|
child: Column(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
height: bodySize.maxHeight * 0.15,
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(0, 0.rpx, 0, 0),
|
||||||
|
child: Container(
|
||||||
|
width: 124.rpx,
|
||||||
|
height: 124.rpx,
|
||||||
|
// width: double.infinity,
|
||||||
|
decoration: BoxDecoration(),
|
||||||
|
child: SvgPicture.asset(
|
||||||
|
'assets/img/icon/tick.svg',
|
||||||
|
fit: BoxFit.cover,
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding:
|
||||||
|
EdgeInsetsDirectional.fromSTEB(20.rpx, 42.rpx, 0, 0),
|
||||||
|
child: Container(
|
||||||
|
width: double.infinity,
|
||||||
|
decoration: BoxDecoration(),
|
||||||
|
child: Align(
|
||||||
|
alignment: AlignmentDirectional(0, 0),
|
||||||
|
child: Text(
|
||||||
|
'报修成功'.tr,
|
||||||
|
style: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
fontFamily: 'Inter',
|
||||||
|
fontSize: 48.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
SizedBox(
|
||||||
|
height: 90.rpx,
|
||||||
|
),
|
||||||
|
// Padding(
|
||||||
|
// padding:
|
||||||
|
// EdgeInsetsDirectional.fromSTEB(0, 265.rpx, 0, 0),
|
||||||
|
// child: Container(
|
||||||
|
// width: double.infinity,
|
||||||
|
// decoration: BoxDecoration(),
|
||||||
|
// child: Align(
|
||||||
|
// alignment: AlignmentDirectional(0, 0),
|
||||||
|
// child: Text(
|
||||||
|
// '绑定成功.分享标题'.tr,
|
||||||
|
// style: FlutterFlowTheme.of(context)
|
||||||
|
// .bodyMedium
|
||||||
|
// .override(
|
||||||
|
// fontFamily: 'Inter',
|
||||||
|
// fontSize: 30.rpx,
|
||||||
|
// letterSpacing: 0.0,
|
||||||
|
// color: themeController.currentColor.sc3,
|
||||||
|
// ),
|
||||||
|
// ),
|
||||||
|
// ),
|
||||||
|
// ),
|
||||||
|
// ),
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(0, 48.rpx, 0, 0),
|
||||||
|
child: Container(
|
||||||
|
width: double.infinity,
|
||||||
|
decoration: BoxDecoration(),
|
||||||
|
child: Align(
|
||||||
|
alignment: AlignmentDirectional(-1, 0),
|
||||||
|
child: Text(
|
||||||
|
'报修成功标语'.tr,
|
||||||
|
style: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
fontFamily: 'Inter',
|
||||||
|
fontSize: 26.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(0, 110.rpx, 0, 0),
|
||||||
|
child: CustomCard(
|
||||||
|
borderRadius:
|
||||||
|
AppConstants().button_container_radius, // 圆角半径
|
||||||
|
onTap: () async {
|
||||||
|
Get.toNamed("/repairListPage");
|
||||||
|
},
|
||||||
|
colors: [
|
||||||
|
// 渐变色
|
||||||
|
themeController.currentColor.sc1,
|
||||||
|
themeController.currentColor.sc2,
|
||||||
|
],
|
||||||
|
child: Container(
|
||||||
|
width: MediaQuery.sizeOf(context).width * 0.66,
|
||||||
|
height: MediaQuery.sizeOf(context).height * 0.055,
|
||||||
|
constraints: BoxConstraints(
|
||||||
|
minWidth: 500.rpx,
|
||||||
|
minHeight: 90.rpx,
|
||||||
|
),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(
|
||||||
|
0, 2.rpx, 0, 0),
|
||||||
|
child: SvgPicture.asset(
|
||||||
|
'assets/img/icon/history.svg',
|
||||||
|
width: 25.rpx,
|
||||||
|
height: 25.rpx, // 如果 SVG 中没有固定颜色,可以这样设置
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'查看报修历史'.tr,
|
||||||
|
style: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
fontFamily: 'Inter',
|
||||||
|
fontSize: AppConstants()
|
||||||
|
.normal_text_fontSize, // 自定义字体大小
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(width: 17.rpx)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(0, 18.rpx, 0, 0),
|
||||||
|
child: CustomCard(
|
||||||
|
borderRadius:
|
||||||
|
AppConstants().button_container_radius, // 圆角半径
|
||||||
|
onTap: () {
|
||||||
|
Get.offAllNamed("/mianPageBottomChange");
|
||||||
|
},
|
||||||
|
colors: [
|
||||||
|
// 渐变色
|
||||||
|
themeController.currentColor.sc1,
|
||||||
|
themeController.currentColor.sc2,
|
||||||
|
],
|
||||||
|
|
||||||
|
child: Container(
|
||||||
|
width: MediaQuery.sizeOf(context).width * 0.66,
|
||||||
|
height: MediaQuery.sizeOf(context).height * 0.055,
|
||||||
|
constraints: BoxConstraints(
|
||||||
|
minWidth: 500.rpx,
|
||||||
|
minHeight: 90.rpx,
|
||||||
|
),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'绑定成功.返回'.tr,
|
||||||
|
style: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
fontFamily: 'Inter',
|
||||||
|
fontSize: AppConstants()
|
||||||
|
.normal_text_fontSize, // 自定义字体大小
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(width: 17.rpx)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildDeviceCard(BuildContext context,
|
||||||
|
{required String title, required String imageUrl, required String type}) {
|
||||||
|
return CustomCard(
|
||||||
|
borderRadius: 20.rpx, // 圆角大小
|
||||||
|
onTap: () {
|
||||||
|
if (type != null) {
|
||||||
|
if (type == '1') {
|
||||||
|
Get.toNamed("/blueteethDevice");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
colors: [themeController.currentColor.sc17], // 背景色
|
||||||
|
child: Container(
|
||||||
|
width: double.infinity,
|
||||||
|
height: MediaQuery.sizeOf(context).height * 0.135,
|
||||||
|
constraints: BoxConstraints(
|
||||||
|
minHeight: 220.rpx,
|
||||||
|
),
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(77.rpx, 0, 21.rpx, 0),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
title,
|
||||||
|
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
||||||
|
fontFamily: 'Inter',
|
||||||
|
color: const Color(0xFFC2CED7),
|
||||||
|
fontSize: 30.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
ClipRRect(
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
child: Image.asset(
|
||||||
|
imageUrl,
|
||||||
|
width: 212.rpx,
|
||||||
|
height: 168.rpx,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,15 +1,15 @@
|
|||||||
import 'package:ef/base/widget/flutterflow/FlutterFlowTheme.dart';
|
|
||||||
import 'package:ef/ef.dart';
|
import 'package:ef/ef.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutterflow_ui/flutterflow_ui.dart';
|
import 'package:flutterflow_ui/flutterflow_ui.dart';
|
||||||
import 'package:vbvs_app/common/color/appConstants.dart';
|
import 'package:vbvs_app/common/color/appConstants.dart';
|
||||||
import 'package:vbvs_app/common/util/FitTool.dart';
|
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||||
|
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||||
import 'package:vbvs_app/component/tool/ClickableContainer.dart';
|
import 'package:vbvs_app/component/tool/ClickableContainer.dart';
|
||||||
import 'package:vbvs_app/component/tool/CustomCard.dart';
|
import 'package:vbvs_app/component/tool/CustomCard.dart';
|
||||||
import 'package:vbvs_app/routers/routers.dart';
|
|
||||||
|
|
||||||
class RepairHistoryInfoWidget extends StatefulWidget {
|
class RepairHistoryInfoWidget extends StatefulWidget {
|
||||||
const RepairHistoryInfoWidget({super.key});
|
var data;
|
||||||
|
RepairHistoryInfoWidget({super.key, required this.data});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<RepairHistoryInfoWidget> createState() =>
|
State<RepairHistoryInfoWidget> createState() =>
|
||||||
@@ -29,226 +29,283 @@ class _RepairHistoryInfoWidgetState extends State<RepairHistoryInfoWidget> {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return ClickableContainer(
|
return Stack(
|
||||||
borderRadius: AppConstants().normal_container_radius,
|
children: [
|
||||||
onTap: () {
|
ClickableContainer(
|
||||||
//跳转详情
|
borderRadius: AppConstants().normal_container_radius,
|
||||||
},
|
onTap: () {
|
||||||
// colors: [
|
//跳转详情
|
||||||
// themeController.currentColor.sc5,
|
},
|
||||||
// ],
|
// colors: [
|
||||||
backgroundColor: Colors.transparent,
|
// themeController.currentColor.sc5,
|
||||||
highlightColor: themeController.currentColor.sc21,
|
// ],
|
||||||
padding: EdgeInsetsDirectional.fromSTEB(0.rpx, 0.rpx, 0.rpx, 0.rpx),
|
backgroundColor: Colors.transparent,
|
||||||
child: Container(
|
highlightColor: themeController.currentColor.sc21,
|
||||||
width: double.infinity,
|
padding: EdgeInsetsDirectional.fromSTEB(0.rpx, 0.rpx, 0.rpx, 0.rpx),
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: themeController.currentColor.sc5,
|
|
||||||
borderRadius:
|
|
||||||
BorderRadius.circular(AppConstants().normal_container_radius),
|
|
||||||
),
|
|
||||||
child: Padding(
|
|
||||||
padding:
|
|
||||||
EdgeInsetsDirectional.fromSTEB(30.rpx, 36.rpx, 0.rpx, 36.rpx),
|
|
||||||
child: Container(
|
child: Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
decoration: BoxDecoration(),
|
decoration: BoxDecoration(
|
||||||
child: Column(
|
color: themeController.currentColor.sc5,
|
||||||
mainAxisSize: MainAxisSize.max,
|
borderRadius:
|
||||||
children: [
|
BorderRadius.circular(AppConstants().normal_container_radius),
|
||||||
Container(
|
),
|
||||||
width: double.infinity,
|
child: Padding(
|
||||||
decoration: BoxDecoration(),
|
padding:
|
||||||
child: Row(
|
EdgeInsetsDirectional.fromSTEB(30.rpx, 36.rpx, 0.rpx, 36.rpx),
|
||||||
mainAxisSize: MainAxisSize.max,
|
child: Container(
|
||||||
children: [
|
width: double.infinity,
|
||||||
Container(
|
decoration: BoxDecoration(),
|
||||||
width: MediaQuery.sizeOf(context).width * 0.14,
|
child: Column(
|
||||||
constraints: BoxConstraints(
|
mainAxisSize: MainAxisSize.max,
|
||||||
maxWidth: 130.rpx,
|
children: [
|
||||||
),
|
Container(
|
||||||
decoration: BoxDecoration(),
|
width: double.infinity,
|
||||||
child: Text(
|
decoration: BoxDecoration(),
|
||||||
'设备类型'.tr,
|
child: Row(
|
||||||
maxLines: 2,
|
mainAxisSize: MainAxisSize.max,
|
||||||
overflow: TextOverflow.ellipsis,
|
children: [
|
||||||
style: TextStyle(
|
Container(
|
||||||
fontSize: 26.rpx,
|
width: MediaQuery.sizeOf(context).width * 0.17,
|
||||||
letterSpacing: 0.0,
|
constraints: BoxConstraints(
|
||||||
fontWeight: FlutterFlowTheme.of(context)
|
maxWidth: 140.rpx,
|
||||||
.bodyMedium
|
),
|
||||||
.fontWeight,
|
decoration: BoxDecoration(),
|
||||||
fontStyle: FlutterFlowTheme.of(context)
|
child: Text(
|
||||||
.bodyMedium
|
'设备类型'.tr,
|
||||||
.fontStyle,
|
maxLines: 1,
|
||||||
color: themeController.currentColor.sc4,
|
overflow: TextOverflow.ellipsis,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 26.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontWeight: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.fontWeight,
|
||||||
|
fontStyle: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.fontStyle,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
Text(
|
||||||
),
|
'${widget.data['type']}',
|
||||||
Text(
|
maxLines: 1,
|
||||||
'智能床',
|
overflow: TextOverflow.ellipsis,
|
||||||
maxLines: 2,
|
style: TextStyle(
|
||||||
overflow: TextOverflow.ellipsis,
|
fontSize: 26.rpx,
|
||||||
style: TextStyle(
|
letterSpacing: 0.0,
|
||||||
fontSize: 26.rpx,
|
fontWeight: FlutterFlowTheme.of(context)
|
||||||
letterSpacing: 0.0,
|
.bodyMedium
|
||||||
fontWeight: FlutterFlowTheme.of(context)
|
.fontWeight,
|
||||||
.bodyMedium
|
fontStyle: FlutterFlowTheme.of(context)
|
||||||
.fontWeight,
|
.bodyMedium
|
||||||
fontStyle:
|
.fontStyle,
|
||||||
FlutterFlowTheme.of(context).bodyMedium.fontStyle,
|
color: themeController.currentColor.sc3,
|
||||||
color: themeController.currentColor.sc3,
|
),
|
||||||
),
|
|
||||||
),
|
|
||||||
].divide(SizedBox(width: 33.rpx)),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
width: double.infinity,
|
|
||||||
decoration: BoxDecoration(),
|
|
||||||
child: Row(
|
|
||||||
mainAxisSize: MainAxisSize.max,
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
width: MediaQuery.sizeOf(context).width * 0.14,
|
|
||||||
constraints: BoxConstraints(
|
|
||||||
maxWidth: 130.rpx,
|
|
||||||
),
|
|
||||||
decoration: BoxDecoration(),
|
|
||||||
child: Text(
|
|
||||||
'设备ID'.tr,
|
|
||||||
maxLines: 2,
|
|
||||||
overflow: TextOverflow.ellipsis,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 26.rpx,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
fontWeight: FlutterFlowTheme.of(context)
|
|
||||||
.bodyMedium
|
|
||||||
.fontWeight,
|
|
||||||
fontStyle: FlutterFlowTheme.of(context)
|
|
||||||
.bodyMedium
|
|
||||||
.fontStyle,
|
|
||||||
color: themeController.currentColor.sc4,
|
|
||||||
),
|
),
|
||||||
),
|
].divide(SizedBox(width: 33.rpx)),
|
||||||
),
|
),
|
||||||
Text(
|
),
|
||||||
'15561651',
|
Container(
|
||||||
maxLines: 2,
|
width: double.infinity,
|
||||||
overflow: TextOverflow.ellipsis,
|
decoration: BoxDecoration(),
|
||||||
style: TextStyle(
|
child: Row(
|
||||||
fontSize: 26.rpx,
|
mainAxisSize: MainAxisSize.max,
|
||||||
letterSpacing: 0.0,
|
children: [
|
||||||
fontWeight: FlutterFlowTheme.of(context)
|
Container(
|
||||||
.bodyMedium
|
width: MediaQuery.sizeOf(context).width * 0.17,
|
||||||
.fontWeight,
|
constraints: BoxConstraints(
|
||||||
fontStyle:
|
maxWidth: 140.rpx,
|
||||||
FlutterFlowTheme.of(context).bodyMedium.fontStyle,
|
),
|
||||||
color: themeController.currentColor.sc3,
|
decoration: BoxDecoration(),
|
||||||
),
|
child: Text(
|
||||||
),
|
'设备ID'.tr,
|
||||||
].divide(SizedBox(width: 33.rpx)),
|
maxLines: 1,
|
||||||
),
|
overflow: TextOverflow.ellipsis,
|
||||||
),
|
style: TextStyle(
|
||||||
Container(
|
fontSize: 26.rpx,
|
||||||
width: double.infinity,
|
letterSpacing: 0.0,
|
||||||
decoration: BoxDecoration(),
|
fontWeight: FlutterFlowTheme.of(context)
|
||||||
child: Row(
|
.bodyMedium
|
||||||
mainAxisSize: MainAxisSize.max,
|
.fontWeight,
|
||||||
children: [
|
fontStyle: FlutterFlowTheme.of(context)
|
||||||
Container(
|
.bodyMedium
|
||||||
width: MediaQuery.sizeOf(context).width * 0.14,
|
.fontStyle,
|
||||||
constraints: BoxConstraints(
|
color: themeController.currentColor.sc4,
|
||||||
maxWidth: 130.rpx,
|
),
|
||||||
),
|
),
|
||||||
decoration: BoxDecoration(),
|
|
||||||
child: Text(
|
|
||||||
'联系人'.tr,
|
|
||||||
maxLines: 2,
|
|
||||||
overflow: TextOverflow.ellipsis,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 26.rpx,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
fontWeight: FlutterFlowTheme.of(context)
|
|
||||||
.bodyMedium
|
|
||||||
.fontWeight,
|
|
||||||
fontStyle: FlutterFlowTheme.of(context)
|
|
||||||
.bodyMedium
|
|
||||||
.fontStyle,
|
|
||||||
color: themeController.currentColor.sc4,
|
|
||||||
),
|
),
|
||||||
),
|
Expanded(
|
||||||
),
|
child: Text(
|
||||||
Text(
|
'${getDeviceInfo(widget.data)}',
|
||||||
'王明',
|
maxLines: 1,
|
||||||
maxLines: 2,
|
overflow: TextOverflow.ellipsis,
|
||||||
overflow: TextOverflow.ellipsis,
|
style: TextStyle(
|
||||||
style: TextStyle(
|
fontSize: 26.rpx,
|
||||||
fontSize: 26.rpx,
|
letterSpacing: 0.0,
|
||||||
letterSpacing: 0.0,
|
fontWeight: FlutterFlowTheme.of(context)
|
||||||
fontWeight: FlutterFlowTheme.of(context)
|
.bodyMedium
|
||||||
.bodyMedium
|
.fontWeight,
|
||||||
.fontWeight,
|
fontStyle: FlutterFlowTheme.of(context)
|
||||||
fontStyle:
|
.bodyMedium
|
||||||
FlutterFlowTheme.of(context).bodyMedium.fontStyle,
|
.fontStyle,
|
||||||
color: themeController.currentColor.sc3,
|
color: themeController.currentColor.sc3,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
].divide(SizedBox(width: 33.rpx)),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
width: double.infinity,
|
|
||||||
decoration: BoxDecoration(),
|
|
||||||
child: Row(
|
|
||||||
mainAxisSize: MainAxisSize.max,
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
width: MediaQuery.sizeOf(context).width * 0.14,
|
|
||||||
constraints: BoxConstraints(
|
|
||||||
maxWidth: 130.rpx,
|
|
||||||
),
|
|
||||||
decoration: BoxDecoration(),
|
|
||||||
child: Text(
|
|
||||||
'发生时间'.tr,
|
|
||||||
maxLines: 2,
|
|
||||||
overflow: TextOverflow.ellipsis,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 26.rpx,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
fontWeight: FlutterFlowTheme.of(context)
|
|
||||||
.bodyMedium
|
|
||||||
.fontWeight,
|
|
||||||
fontStyle: FlutterFlowTheme.of(context)
|
|
||||||
.bodyMedium
|
|
||||||
.fontStyle,
|
|
||||||
color: themeController.currentColor.sc4,
|
|
||||||
),
|
),
|
||||||
),
|
].divide(SizedBox(width: 33.rpx)),
|
||||||
),
|
),
|
||||||
Text(
|
),
|
||||||
'2022-08-01 15:05',
|
Container(
|
||||||
maxLines: 2,
|
width: double.infinity,
|
||||||
overflow: TextOverflow.ellipsis,
|
decoration: BoxDecoration(),
|
||||||
style: TextStyle(
|
child: Row(
|
||||||
fontSize: 26.rpx,
|
mainAxisSize: MainAxisSize.max,
|
||||||
letterSpacing: 0.0,
|
children: [
|
||||||
fontWeight: FlutterFlowTheme.of(context)
|
Container(
|
||||||
.bodyMedium
|
width: MediaQuery.sizeOf(context).width * 0.17,
|
||||||
.fontWeight,
|
constraints: BoxConstraints(
|
||||||
fontStyle:
|
maxWidth: 140.rpx,
|
||||||
FlutterFlowTheme.of(context).bodyMedium.fontStyle,
|
),
|
||||||
color: themeController.currentColor.sc3,
|
decoration: BoxDecoration(),
|
||||||
),
|
child: Text(
|
||||||
|
'联系人'.tr,
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 26.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontWeight: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.fontWeight,
|
||||||
|
fontStyle: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.fontStyle,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'${widget.data['contacts']?['name']}',
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 26.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontWeight: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.fontWeight,
|
||||||
|
fontStyle: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.fontStyle,
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(width: 33.rpx)),
|
||||||
),
|
),
|
||||||
].divide(SizedBox(width: 33.rpx)),
|
),
|
||||||
),
|
Container(
|
||||||
|
width: double.infinity,
|
||||||
|
decoration: BoxDecoration(),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
width: MediaQuery.sizeOf(context).width * 0.17,
|
||||||
|
constraints: BoxConstraints(
|
||||||
|
maxWidth: 140.rpx,
|
||||||
|
),
|
||||||
|
decoration: BoxDecoration(),
|
||||||
|
child: Text(
|
||||||
|
'发生时间'.tr,
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 26.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontWeight: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.fontWeight,
|
||||||
|
fontStyle: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.fontStyle,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'${MyUtils.timestampToDateString(widget.data['create_time'])}',
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 26.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontWeight: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.fontWeight,
|
||||||
|
fontStyle: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.fontStyle,
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(width: 33.rpx)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(height: 34.rpx)),
|
||||||
),
|
),
|
||||||
].divide(SizedBox(height: 34.rpx)),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
Positioned(
|
||||||
|
bottom: 40.rpx,
|
||||||
|
right: 20.rpx,
|
||||||
|
child: Container(
|
||||||
|
width: 123.rpx,
|
||||||
|
height: 47.rpx,
|
||||||
|
child: CustomCard(
|
||||||
|
borderRadius: AppConstants().button_container_radius, // 直角
|
||||||
|
colors: [
|
||||||
|
themeController.currentColor.sc4.withOpacity(0.3),
|
||||||
|
],
|
||||||
|
enableAnimation: true, // 有点击缩放动画
|
||||||
|
enableGradient: false, // 不用渐变
|
||||||
|
onTap: () {
|
||||||
|
Get.toNamed("/repairDetailPage", arguments: widget.data);
|
||||||
|
},
|
||||||
|
child: Center(
|
||||||
|
child: Text(
|
||||||
|
"查看".tr,
|
||||||
|
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
||||||
|
fontFamily: 'Inter',
|
||||||
|
fontSize: 26.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String getDeviceInfo(Map data) {
|
||||||
|
if (data['device'] == null || data['device'] is! List) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
List deviceList = data['device'];
|
||||||
|
List<String> result = deviceList.map((device) {
|
||||||
|
final name = device['name'] ?? '';
|
||||||
|
final code = device['code'];
|
||||||
|
final mac = device['mac'] ?? '';
|
||||||
|
final suffix = (code != null && code.toString().isNotEmpty) ? code : mac;
|
||||||
|
return '$name($suffix)';
|
||||||
|
}).toList();
|
||||||
|
|
||||||
|
return result.join(', ');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
489
lib/pages/repair/component/RepairModelReadOnlyWidget.dart
Normal file
489
lib/pages/repair/component/RepairModelReadOnlyWidget.dart
Normal file
@@ -0,0 +1,489 @@
|
|||||||
|
import 'package:ef/ef.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_svg/svg.dart';
|
||||||
|
import 'package:flutterflow_ui/flutterflow_ui.dart';
|
||||||
|
import 'package:vbvs_app/common/color/appConstants.dart';
|
||||||
|
import 'package:vbvs_app/common/color/app_uri_status.dart';
|
||||||
|
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||||
|
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||||
|
import 'package:vbvs_app/component/tool/ClickableContainer.dart';
|
||||||
|
import 'package:vbvs_app/component/tool/CustomCard.dart';
|
||||||
|
import 'package:vbvs_app/component/tool/TopSlideNotification.dart';
|
||||||
|
import 'package:vbvs_app/controller/device/body_device_controller.dart';
|
||||||
|
import 'package:vbvs_app/controller/repair/repair_controller.dart';
|
||||||
|
import 'package:vbvs_app/controller/user_info_controller.dart';
|
||||||
|
import 'package:vbvs_app/model/api_response.dart';
|
||||||
|
|
||||||
|
class RepairModelReadOnlyWidget extends StatefulWidget {
|
||||||
|
var model;
|
||||||
|
final VoidCallback onTap; // 添加回调函数
|
||||||
|
int length;
|
||||||
|
final GlobalKey widgetKey; // 新增
|
||||||
|
final bool showDelete; // ✅ 新增
|
||||||
|
|
||||||
|
RepairModelReadOnlyWidget({
|
||||||
|
super.key,
|
||||||
|
required this.model,
|
||||||
|
required this.onTap,
|
||||||
|
required this.length,
|
||||||
|
required this.widgetKey,
|
||||||
|
this.showDelete = true, // ✅ 默认为 false
|
||||||
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<RepairModelReadOnlyWidget> createState() =>
|
||||||
|
_RepairModelReadOnlyWidgetState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _RepairModelReadOnlyWidgetState extends State<RepairModelReadOnlyWidget> {
|
||||||
|
FormFieldController<String> _deviceController =
|
||||||
|
FormFieldController<String>(null);
|
||||||
|
RepairController repairController = Get.find();
|
||||||
|
UserInfoController userInfoController = Get.find();
|
||||||
|
late FormFieldController<String?>? _issueController;
|
||||||
|
BodyDeviceController bodyDeviceController = Get.find();
|
||||||
|
|
||||||
|
@override
|
||||||
|
void setState(VoidCallback callback) {
|
||||||
|
super.setState(callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
_issueController =
|
||||||
|
FormFieldController<String?>(widget.model['issue'] ?? '');
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Container(
|
||||||
|
key: widget.widgetKey, // 使用传入的 key
|
||||||
|
width: double.infinity,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: themeController.currentColor.sc5,
|
||||||
|
borderRadius:
|
||||||
|
BorderRadius.circular(AppConstants().normal_container_radius),
|
||||||
|
),
|
||||||
|
child: Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(30.rpx, 35.rpx, 30.rpx, 35.rpx),
|
||||||
|
child: Container(
|
||||||
|
width: double.infinity,
|
||||||
|
decoration: BoxDecoration(),
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
width: double.infinity,
|
||||||
|
decoration: BoxDecoration(),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
width: 110.rpx,
|
||||||
|
decoration: BoxDecoration(),
|
||||||
|
child: Text(
|
||||||
|
'设备ID'.tr,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 26.rpx,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Obx(() {
|
||||||
|
return Expanded(
|
||||||
|
child: Container(
|
||||||
|
width: 200.rpx,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: BorderRadius.circular(10.rpx),
|
||||||
|
color: Colors.transparent,
|
||||||
|
),
|
||||||
|
child: TextFormField(
|
||||||
|
readOnly: true,
|
||||||
|
controller: repairController.onReDraw(
|
||||||
|
TextEditingController(text: widget.model['id']),
|
||||||
|
(textEditingController) {
|
||||||
|
textEditingController.text = widget.model['id'];
|
||||||
|
}),
|
||||||
|
autofocus: false,
|
||||||
|
obscureText: false,
|
||||||
|
decoration: InputDecoration(
|
||||||
|
isDense: true,
|
||||||
|
labelStyle: TextStyle(
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontWeight: FlutterFlowTheme.of(context)
|
||||||
|
.labelMedium
|
||||||
|
.fontWeight,
|
||||||
|
fontStyle: FlutterFlowTheme.of(context)
|
||||||
|
.labelMedium
|
||||||
|
.fontStyle,
|
||||||
|
),
|
||||||
|
hintText: "设备参数提示".tr,
|
||||||
|
hintStyle: TextStyle(
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontSize: AppConstants().normal_text_fontSize,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
enabledBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: Color(0x00000000),
|
||||||
|
width: 1.rpx,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(
|
||||||
|
AppConstants().normal_container_radius),
|
||||||
|
),
|
||||||
|
focusedBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: Colors.transparent,
|
||||||
|
width: 1.rpx,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
errorBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context).error,
|
||||||
|
width: 1.rpx,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
focusedErrorBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context).error,
|
||||||
|
width: 1.rpx,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
filled: true,
|
||||||
|
fillColor: themeController.currentColor.sc15,
|
||||||
|
),
|
||||||
|
style: TextStyle(
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
fontSize: AppConstants().normal_text_fontSize,
|
||||||
|
),
|
||||||
|
cursorColor: themeController.currentColor.sc4,
|
||||||
|
onChanged: (value) {
|
||||||
|
widget.model['id'] = value;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
].divide(SizedBox(width: 24.rpx)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
width: double.infinity,
|
||||||
|
decoration: BoxDecoration(),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
width: 110.rpx,
|
||||||
|
decoration: BoxDecoration(),
|
||||||
|
child: Text(
|
||||||
|
'设备参数'.tr,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 26.rpx,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
maxLines: 2,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Obx(() {
|
||||||
|
return Expanded(
|
||||||
|
child: Container(
|
||||||
|
width: 200.rpx,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: BorderRadius.circular(10.rpx),
|
||||||
|
color: Colors.transparent,
|
||||||
|
),
|
||||||
|
child: TextFormField(
|
||||||
|
readOnly: true,
|
||||||
|
controller: repairController.onReDraw(
|
||||||
|
TextEditingController(
|
||||||
|
text: widget.model['param']),
|
||||||
|
(textEditingController) {
|
||||||
|
textEditingController.text =
|
||||||
|
widget.model['param'];
|
||||||
|
}),
|
||||||
|
// initialValue: widget.model['param'],
|
||||||
|
autofocus: false,
|
||||||
|
obscureText: false,
|
||||||
|
decoration: InputDecoration(
|
||||||
|
isDense: true,
|
||||||
|
labelStyle: TextStyle(
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontWeight: FlutterFlowTheme.of(context)
|
||||||
|
.labelMedium
|
||||||
|
.fontWeight,
|
||||||
|
fontStyle: FlutterFlowTheme.of(context)
|
||||||
|
.labelMedium
|
||||||
|
.fontStyle,
|
||||||
|
),
|
||||||
|
hintText: "设备参数提示".tr,
|
||||||
|
hintStyle: TextStyle(
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontSize: AppConstants().normal_text_fontSize,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
enabledBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: Color(0x00000000),
|
||||||
|
width: 1.rpx,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(
|
||||||
|
AppConstants().normal_container_radius),
|
||||||
|
),
|
||||||
|
focusedBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: Colors.transparent,
|
||||||
|
width: 1.rpx,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
errorBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context).error,
|
||||||
|
width: 1.rpx,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
focusedErrorBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context).error,
|
||||||
|
width: 1.rpx,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
filled: true,
|
||||||
|
fillColor: themeController.currentColor.sc15,
|
||||||
|
),
|
||||||
|
style: TextStyle(
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
fontSize: AppConstants().normal_text_fontSize,
|
||||||
|
),
|
||||||
|
cursorColor: themeController.currentColor.sc4,
|
||||||
|
onChanged: (value) {
|
||||||
|
widget.model['param'] = value;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
].divide(SizedBox(width: 24.rpx)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
width: double.infinity,
|
||||||
|
height: 151.rpx,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: themeController.currentColor.sc15,
|
||||||
|
borderRadius: BorderRadius.circular(20.rpx),
|
||||||
|
),
|
||||||
|
child: Container(
|
||||||
|
width: 200.rpx,
|
||||||
|
child: TextFormField(
|
||||||
|
readOnly: true,
|
||||||
|
controller: repairController.onReDraw(
|
||||||
|
TextEditingController(text: widget.model['issue']),
|
||||||
|
(textEditingController) {
|
||||||
|
textEditingController.text = widget.model['issue'];
|
||||||
|
}),
|
||||||
|
onChanged: (value) {
|
||||||
|
widget.model['issue'] = value;
|
||||||
|
},
|
||||||
|
maxLines: null, // 👈 支持无限行
|
||||||
|
// controller: TextEditingController(),
|
||||||
|
autofocus: false,
|
||||||
|
obscureText: false,
|
||||||
|
decoration: InputDecoration(
|
||||||
|
isDense: true,
|
||||||
|
labelStyle: TextStyle(
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontWeight:
|
||||||
|
FlutterFlowTheme.of(context).labelMedium.fontWeight,
|
||||||
|
fontStyle:
|
||||||
|
FlutterFlowTheme.of(context).labelMedium.fontStyle,
|
||||||
|
),
|
||||||
|
hintText: '问题描述'.tr,
|
||||||
|
hintStyle: TextStyle(
|
||||||
|
fontSize: 26.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
enabledBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: Color(0x00000000),
|
||||||
|
width: 1,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
focusedBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: Color(0x00000000),
|
||||||
|
width: 1,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
errorBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context).error,
|
||||||
|
width: 1,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
focusedErrorBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context).error,
|
||||||
|
width: 1,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
filled: false,
|
||||||
|
contentPadding: EdgeInsets.symmetric(
|
||||||
|
vertical: 20.rpx, horizontal: 20.rpx),
|
||||||
|
),
|
||||||
|
style: TextStyle(
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
fontSize: AppConstants().normal_text_fontSize,
|
||||||
|
),
|
||||||
|
cursorColor: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
ClickableContainer(
|
||||||
|
backgroundColor: themeController.currentColor.sc15,
|
||||||
|
highlightColor: themeController.currentColor.sc21,
|
||||||
|
borderRadius: 20.rpx,
|
||||||
|
padding: EdgeInsets.zero,
|
||||||
|
onTap: () async {
|
||||||
|
ApiResponse apiResponse = await repairController.uploadImg();
|
||||||
|
print(apiResponse);
|
||||||
|
if (apiResponse.code == HttpStatusCodes.ok) {
|
||||||
|
print(widget.model);
|
||||||
|
// setState(() {
|
||||||
|
// widget.model['path'] = apiResponse.data['path'];
|
||||||
|
// });
|
||||||
|
widget.model['path'] = apiResponse.data['path'];
|
||||||
|
repairController.repairList
|
||||||
|
.refresh(); // 通知 Obx 更新(如果用了 GetX)
|
||||||
|
print(widget.model);
|
||||||
|
} else {
|
||||||
|
if (widget.model['path'] == null ||
|
||||||
|
widget.model['path'].isEmpty) {
|
||||||
|
TopSlideNotification.show(
|
||||||
|
context,
|
||||||
|
text: apiResponse.msg!,
|
||||||
|
textColor: apiResponse.code == HttpStatusCodes.ok
|
||||||
|
? themeController.currentColor.sc2
|
||||||
|
: themeController.currentColor.sc9,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
child: SizedBox(
|
||||||
|
width: double.infinity,
|
||||||
|
height: MediaQuery.sizeOf(context).height * 0.203,
|
||||||
|
child: ConstrainedBox(
|
||||||
|
constraints: BoxConstraints(
|
||||||
|
minHeight: 151.rpx,
|
||||||
|
),
|
||||||
|
child: Obx(() {
|
||||||
|
var list = repairController.repairList;
|
||||||
|
print(list);
|
||||||
|
if (widget.model['path'] == null ||
|
||||||
|
widget.model['path'] == "") {
|
||||||
|
return Column(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
width: 60.rpx,
|
||||||
|
height: 53.rpx,
|
||||||
|
child: SvgPicture.asset(
|
||||||
|
'assets/img/icon/camera.svg',
|
||||||
|
width: 24.rpx,
|
||||||
|
height: 24.rpx,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'上传提示'.tr,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 26.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(height: 28.rpx)),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return Container(
|
||||||
|
// clipBehavior: Clip.antiAlias,
|
||||||
|
child: Image.network(
|
||||||
|
widget.model['path'],
|
||||||
|
fit: BoxFit.cover,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
})),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (widget.length > 1 && widget.showDelete == true)
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(
|
||||||
|
100.rpx, 0.rpx, 100.rpx, 0.rpx),
|
||||||
|
child: CustomCard(
|
||||||
|
borderRadius:
|
||||||
|
AppConstants().button_container_radius, // 圆角半径
|
||||||
|
onTap: widget.onTap,
|
||||||
|
colors: [
|
||||||
|
Colors.transparent,
|
||||||
|
],
|
||||||
|
child: Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Colors.transparent,
|
||||||
|
borderRadius: BorderRadius.circular(
|
||||||
|
AppConstants().button_container_radius),
|
||||||
|
),
|
||||||
|
width: MediaQuery.sizeOf(context).width * 0.216,
|
||||||
|
height: MediaQuery.sizeOf(context).height * 0.038,
|
||||||
|
constraints: BoxConstraints(
|
||||||
|
minHeight: 62.rpx,
|
||||||
|
),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'删除'.tr,
|
||||||
|
style: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
color: themeController.currentColor.sc9,
|
||||||
|
fontFamily: 'Inter',
|
||||||
|
fontSize: AppConstants().normal_text_fontSize,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(
|
||||||
|
width: 17.rpx,
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(height: 29.rpx)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,26 +5,30 @@ import 'package:flutterflow_ui/flutterflow_ui.dart';
|
|||||||
import 'package:vbvs_app/common/color/appConstants.dart';
|
import 'package:vbvs_app/common/color/appConstants.dart';
|
||||||
import 'package:vbvs_app/common/color/app_uri_status.dart';
|
import 'package:vbvs_app/common/color/app_uri_status.dart';
|
||||||
import 'package:vbvs_app/common/util/FitTool.dart';
|
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||||
|
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||||
import 'package:vbvs_app/component/base/THFlutterFlowDropDown.dart';
|
import 'package:vbvs_app/component/base/THFlutterFlowDropDown.dart';
|
||||||
import 'package:vbvs_app/component/tool/ClickableContainer.dart';
|
import 'package:vbvs_app/component/tool/ClickableContainer.dart';
|
||||||
import 'package:vbvs_app/component/tool/CustomCard.dart';
|
import 'package:vbvs_app/component/tool/CustomCard.dart';
|
||||||
import 'package:vbvs_app/component/tool/TopSlideNotification.dart';
|
import 'package:vbvs_app/component/tool/TopSlideNotification.dart';
|
||||||
|
import 'package:vbvs_app/controller/device/body_device_controller.dart';
|
||||||
import 'package:vbvs_app/controller/repair/repair_controller.dart';
|
import 'package:vbvs_app/controller/repair/repair_controller.dart';
|
||||||
import 'package:vbvs_app/controller/user_info_controller.dart';
|
import 'package:vbvs_app/controller/user_info_controller.dart';
|
||||||
import 'package:vbvs_app/model/api_response.dart';
|
import 'package:vbvs_app/model/api_response.dart';
|
||||||
import 'package:vbvs_app/routers/routers.dart';
|
|
||||||
|
|
||||||
class RepairModelWidget extends StatefulWidget {
|
class RepairModelWidget extends StatefulWidget {
|
||||||
var model;
|
var model;
|
||||||
final VoidCallback onTap; // 添加回调函数
|
final VoidCallback onTap; // 添加回调函数
|
||||||
int length;
|
int length;
|
||||||
final GlobalKey widgetKey; // 新增
|
final GlobalKey widgetKey; // 新增
|
||||||
|
final bool showDelete; // ✅ 新增
|
||||||
|
|
||||||
RepairModelWidget({
|
RepairModelWidget({
|
||||||
super.key,
|
super.key,
|
||||||
required this.model,
|
required this.model,
|
||||||
required this.onTap,
|
required this.onTap,
|
||||||
required this.length,
|
required this.length,
|
||||||
required this.widgetKey,
|
required this.widgetKey,
|
||||||
|
this.showDelete = true, // ✅ 默认为 false
|
||||||
});
|
});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -36,6 +40,8 @@ class _RepairModelWidgetState extends State<RepairModelWidget> {
|
|||||||
FormFieldController<String>(null);
|
FormFieldController<String>(null);
|
||||||
RepairController repairController = Get.find();
|
RepairController repairController = Get.find();
|
||||||
UserInfoController userInfoController = Get.find();
|
UserInfoController userInfoController = Get.find();
|
||||||
|
late FormFieldController<String?>? _issueController;
|
||||||
|
BodyDeviceController bodyDeviceController = Get.find();
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void setState(VoidCallback callback) {
|
void setState(VoidCallback callback) {
|
||||||
@@ -45,6 +51,8 @@ class _RepairModelWidgetState extends State<RepairModelWidget> {
|
|||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
|
_issueController =
|
||||||
|
FormFieldController<String?>(widget.model['issue'] ?? '');
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -54,7 +62,6 @@ class _RepairModelWidgetState extends State<RepairModelWidget> {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
// _deviceController.value = "";
|
|
||||||
return Container(
|
return Container(
|
||||||
key: widget.widgetKey, // 使用传入的 key
|
key: widget.widgetKey, // 使用传入的 key
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
@@ -97,8 +104,31 @@ class _RepairModelWidgetState extends State<RepairModelWidget> {
|
|||||||
),
|
),
|
||||||
height: AppConstants().dropdown_height,
|
height: AppConstants().dropdown_height,
|
||||||
child: THFlutterFlowDropDown<String>(
|
child: THFlutterFlowDropDown<String>(
|
||||||
|
controller: _issueController,
|
||||||
onChanged: (val) {
|
onChanged: (val) {
|
||||||
widget.model['id'] = val;
|
widget.model['id'] = val;
|
||||||
|
final targetId = widget.model['id'];
|
||||||
|
final matchedDevice =
|
||||||
|
bodyDeviceController.deviceList.firstWhere(
|
||||||
|
(device) => device['_id'] == targetId,
|
||||||
|
orElse: () => null, // 如果找不到,返回 null(可选)
|
||||||
|
);
|
||||||
|
if (matchedDevice != null) {
|
||||||
|
// 找到了匹配的项
|
||||||
|
widget.model['param'] = matchedDevice['mac'];
|
||||||
|
widget.model['mac'] = matchedDevice['mac'];
|
||||||
|
widget.model['code'] =
|
||||||
|
matchedDevice['code'] ?? '';
|
||||||
|
widget.model['name'] = (matchedDevice['person']
|
||||||
|
?['name']
|
||||||
|
?.toString()
|
||||||
|
.trim()
|
||||||
|
.isNotEmpty ??
|
||||||
|
false)
|
||||||
|
? matchedDevice['person']['name']
|
||||||
|
: '未命名'.tr;
|
||||||
|
repairController.updateAll();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
width: 200.rpx,
|
width: 200.rpx,
|
||||||
height: 40.rpx,
|
height: 40.rpx,
|
||||||
@@ -127,7 +157,7 @@ class _RepairModelWidgetState extends State<RepairModelWidget> {
|
|||||||
isOverButton: false,
|
isOverButton: false,
|
||||||
isSearchable: false,
|
isSearchable: false,
|
||||||
isMultiSelect: false,
|
isMultiSelect: false,
|
||||||
controller: _deviceController,
|
// controller: _deviceController,
|
||||||
options: repairController.deviceListId!,
|
options: repairController.deviceListId!,
|
||||||
optionLabels: repairController.deviceListId!,
|
optionLabels: repairController.deviceListId!,
|
||||||
),
|
),
|
||||||
@@ -155,84 +185,87 @@ class _RepairModelWidgetState extends State<RepairModelWidget> {
|
|||||||
overflow: TextOverflow.ellipsis,
|
overflow: TextOverflow.ellipsis,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Expanded(
|
Obx(() {
|
||||||
child: Container(
|
return Expanded(
|
||||||
width: 200.rpx,
|
child: Container(
|
||||||
decoration: BoxDecoration(
|
width: 200.rpx,
|
||||||
borderRadius: BorderRadius.circular(10.rpx),
|
decoration: BoxDecoration(
|
||||||
color: Colors.transparent,
|
borderRadius: BorderRadius.circular(10.rpx),
|
||||||
),
|
color: Colors.transparent,
|
||||||
child: TextFormField(
|
),
|
||||||
controller: repairController.onReDraw(
|
child: TextFormField(
|
||||||
TextEditingController(
|
controller: repairController.onReDraw(
|
||||||
text: widget.model['param']),
|
TextEditingController(
|
||||||
(textEditingController) {
|
text: widget.model['param']),
|
||||||
textEditingController.text = widget.model['param'];
|
(textEditingController) {
|
||||||
}),
|
textEditingController.text =
|
||||||
// initialValue: widget.model['param'],
|
widget.model['param'];
|
||||||
autofocus: false,
|
}),
|
||||||
obscureText: false,
|
// initialValue: widget.model['param'],
|
||||||
decoration: InputDecoration(
|
autofocus: false,
|
||||||
isDense: true,
|
obscureText: false,
|
||||||
labelStyle: TextStyle(
|
decoration: InputDecoration(
|
||||||
letterSpacing: 0.0,
|
isDense: true,
|
||||||
fontWeight: FlutterFlowTheme.of(context)
|
labelStyle: TextStyle(
|
||||||
.labelMedium
|
letterSpacing: 0.0,
|
||||||
.fontWeight,
|
fontWeight: FlutterFlowTheme.of(context)
|
||||||
fontStyle: FlutterFlowTheme.of(context)
|
.labelMedium
|
||||||
.labelMedium
|
.fontWeight,
|
||||||
.fontStyle,
|
fontStyle: FlutterFlowTheme.of(context)
|
||||||
|
.labelMedium
|
||||||
|
.fontStyle,
|
||||||
|
),
|
||||||
|
hintText: "设备参数提示".tr,
|
||||||
|
hintStyle: TextStyle(
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontSize: AppConstants().normal_text_fontSize,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
enabledBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: Color(0x00000000),
|
||||||
|
width: 1.rpx,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(
|
||||||
|
AppConstants().normal_container_radius),
|
||||||
|
),
|
||||||
|
focusedBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: Colors.transparent,
|
||||||
|
width: 1.rpx,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
errorBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context).error,
|
||||||
|
width: 1.rpx,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
focusedErrorBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context).error,
|
||||||
|
width: 1.rpx,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
filled: true,
|
||||||
|
fillColor: themeController.currentColor.sc15,
|
||||||
),
|
),
|
||||||
hintText: "设备参数提示".tr,
|
style: TextStyle(
|
||||||
hintStyle: TextStyle(
|
|
||||||
letterSpacing: 0.0,
|
letterSpacing: 0.0,
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
fontSize: AppConstants().normal_text_fontSize,
|
fontSize: AppConstants().normal_text_fontSize,
|
||||||
color: themeController.currentColor.sc4,
|
|
||||||
),
|
),
|
||||||
enabledBorder: OutlineInputBorder(
|
cursorColor: themeController.currentColor.sc3,
|
||||||
borderSide: BorderSide(
|
onChanged: (value) {
|
||||||
color: Color(0x00000000),
|
widget.model['param'] = value;
|
||||||
width: 1.rpx,
|
},
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(
|
|
||||||
AppConstants().normal_container_radius),
|
|
||||||
),
|
|
||||||
focusedBorder: OutlineInputBorder(
|
|
||||||
borderSide: BorderSide(
|
|
||||||
color: Colors.transparent,
|
|
||||||
width: 1.rpx,
|
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(8.rpx),
|
|
||||||
),
|
|
||||||
errorBorder: OutlineInputBorder(
|
|
||||||
borderSide: BorderSide(
|
|
||||||
color: FlutterFlowTheme.of(context).error,
|
|
||||||
width: 1.rpx,
|
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(8.rpx),
|
|
||||||
),
|
|
||||||
focusedErrorBorder: OutlineInputBorder(
|
|
||||||
borderSide: BorderSide(
|
|
||||||
color: FlutterFlowTheme.of(context).error,
|
|
||||||
width: 1.rpx,
|
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(8.rpx),
|
|
||||||
),
|
|
||||||
filled: true,
|
|
||||||
fillColor: themeController.currentColor.sc15,
|
|
||||||
),
|
),
|
||||||
style: TextStyle(
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
color: themeController.currentColor.sc3,
|
|
||||||
fontSize: AppConstants().normal_text_fontSize,
|
|
||||||
),
|
|
||||||
cursorColor: themeController.currentColor.sc3,
|
|
||||||
onChanged: (value) {
|
|
||||||
widget.model['param'] = value;
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
),
|
);
|
||||||
),
|
}),
|
||||||
].divide(SizedBox(width: 24.rpx)),
|
].divide(SizedBox(width: 24.rpx)),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -246,11 +279,16 @@ class _RepairModelWidgetState extends State<RepairModelWidget> {
|
|||||||
child: Container(
|
child: Container(
|
||||||
width: 200.rpx,
|
width: 200.rpx,
|
||||||
child: TextFormField(
|
child: TextFormField(
|
||||||
|
controller: repairController.onReDraw(
|
||||||
|
TextEditingController(text: widget.model['issue']),
|
||||||
|
(textEditingController) {
|
||||||
|
textEditingController.text = widget.model['issue'];
|
||||||
|
}),
|
||||||
onChanged: (value) {
|
onChanged: (value) {
|
||||||
widget.model['issue'] = value;
|
widget.model['issue'] = value;
|
||||||
},
|
},
|
||||||
maxLines: null, // 👈 支持无限行
|
maxLines: null, // 👈 支持无限行
|
||||||
controller: TextEditingController(),
|
// controller: TextEditingController(),
|
||||||
autofocus: false,
|
autofocus: false,
|
||||||
obscureText: false,
|
obscureText: false,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
@@ -385,7 +423,7 @@ class _RepairModelWidgetState extends State<RepairModelWidget> {
|
|||||||
})),
|
})),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (widget.length > 1)
|
if (widget.length > 1 && widget.showDelete == true)
|
||||||
Padding(
|
Padding(
|
||||||
padding: EdgeInsetsDirectional.fromSTEB(
|
padding: EdgeInsetsDirectional.fromSTEB(
|
||||||
100.rpx, 0.rpx, 100.rpx, 0.rpx),
|
100.rpx, 0.rpx, 100.rpx, 0.rpx),
|
||||||
|
|||||||
285
lib/pages/repair/repair_detail_page.dart
Normal file
285
lib/pages/repair/repair_detail_page.dart
Normal file
@@ -0,0 +1,285 @@
|
|||||||
|
import 'package:ef/ef.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutterflow_ui/flutterflow_ui.dart';
|
||||||
|
import 'package:vbvs_app/common/color/appConstants.dart';
|
||||||
|
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||||
|
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||||
|
import 'package:vbvs_app/component/tool/CustomCard.dart';
|
||||||
|
import 'package:vbvs_app/controller/device/body_device_controller.dart';
|
||||||
|
import 'package:vbvs_app/controller/device/device_type_controller.dart';
|
||||||
|
import 'package:vbvs_app/controller/repair/repair_controller.dart';
|
||||||
|
import 'package:vbvs_app/controller/theme_controller/ThemeController.dart';
|
||||||
|
import 'package:vbvs_app/pages/repair/component/RepairModelReadOnlyWidget.dart';
|
||||||
|
|
||||||
|
class RepairDetailPage extends StatefulWidget {
|
||||||
|
final dynamic data;
|
||||||
|
|
||||||
|
const RepairDetailPage({super.key, required this.data});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<RepairDetailPage> createState() => _RepairDetailPageState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _RepairDetailPageState extends State<RepairDetailPage> {
|
||||||
|
final ThemeController themeController = Get.find();
|
||||||
|
final DeviceTypeController deviceTypeController = Get.find();
|
||||||
|
final RepairController repairController = Get.find();
|
||||||
|
final BodyDeviceController bodyDeviceController = Get.find();
|
||||||
|
|
||||||
|
List<Map<String, dynamic>> devices = [];
|
||||||
|
final List<GlobalKey> repairItemKeys = [];
|
||||||
|
final GlobalKey contactKey = GlobalKey();
|
||||||
|
final GlobalKey phoneKey = GlobalKey();
|
||||||
|
|
||||||
|
late final TextEditingController _contactController;
|
||||||
|
late final TextEditingController _phoneController;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
devices = List<Map<String, dynamic>>.from(widget.data['device'] ?? []);
|
||||||
|
_updateRepairItemKeys();
|
||||||
|
|
||||||
|
_contactController = TextEditingController(
|
||||||
|
text: widget.data['contacts']?['name'] ?? '',
|
||||||
|
);
|
||||||
|
_phoneController = TextEditingController(
|
||||||
|
text: widget.data['contacts']?['phone'] ?? '',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void _updateRepairItemKeys() {
|
||||||
|
repairItemKeys
|
||||||
|
..clear()
|
||||||
|
..addAll(List.generate(devices.length, (_) => GlobalKey()));
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
_contactController.dispose();
|
||||||
|
_phoneController.dispose();
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return LayoutBuilder(
|
||||||
|
builder: (context, bodysize) => GestureDetector(
|
||||||
|
onTap: () => FocusScope.of(context).unfocus(),
|
||||||
|
child: Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
image: DecorationImage(
|
||||||
|
image: AssetImage('assets/img/bgNoImg.png'),
|
||||||
|
fit: BoxFit.fill,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
child: Scaffold(
|
||||||
|
backgroundColor: Colors.transparent,
|
||||||
|
appBar: AppBar(
|
||||||
|
backgroundColor: themeController.currentColor.sc17,
|
||||||
|
automaticallyImplyLeading: false,
|
||||||
|
iconTheme: IconThemeData(
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
),
|
||||||
|
titleSpacing: 0,
|
||||||
|
title: Container(
|
||||||
|
width: double.infinity,
|
||||||
|
height: 180.rpx,
|
||||||
|
child: Stack(
|
||||||
|
alignment: Alignment.center,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'设备报修'.tr,
|
||||||
|
style: TextStyle(
|
||||||
|
fontFamily: 'Readex Pro',
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
letterSpacing: 0,
|
||||||
|
fontSize: 30.rpx,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Positioned(
|
||||||
|
left: 0,
|
||||||
|
// child: returnIconButtom,
|
||||||
|
child: returnIconButtomAddCallback(() {}),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
centerTitle: false,
|
||||||
|
),
|
||||||
|
body: SafeArea(
|
||||||
|
top: true,
|
||||||
|
child: Padding(
|
||||||
|
padding:
|
||||||
|
EdgeInsetsDirectional.fromSTEB(30.rpx, 29.rpx, 30.rpx, 0),
|
||||||
|
child: SingleChildScrollView(
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
CustomCard(
|
||||||
|
borderRadius:
|
||||||
|
AppConstants().button_container_radius,
|
||||||
|
onTap: () {},
|
||||||
|
colors: [
|
||||||
|
themeController.currentColor.sc1,
|
||||||
|
themeController.currentColor.sc2,
|
||||||
|
],
|
||||||
|
child: Container(
|
||||||
|
width: (MediaQuery.sizeOf(context).width * 0.284)
|
||||||
|
.rpx,
|
||||||
|
constraints: BoxConstraints(
|
||||||
|
minWidth: 213.rpx,
|
||||||
|
minHeight: 91.rpx,
|
||||||
|
),
|
||||||
|
child: Align(
|
||||||
|
alignment: AlignmentDirectional(0, 0),
|
||||||
|
child: Text(
|
||||||
|
"${widget.data['type']}",
|
||||||
|
style: TextStyle(
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
fontSize:
|
||||||
|
AppConstants().normal_text_fontSize,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
|
||||||
|
/// 设备列表
|
||||||
|
Column(
|
||||||
|
children: List.generate(devices.length, (index) {
|
||||||
|
final item = devices[index];
|
||||||
|
return RepairModelReadOnlyWidget(
|
||||||
|
widgetKey: repairItemKeys[index],
|
||||||
|
model: item,
|
||||||
|
onTap: () {},
|
||||||
|
length: devices.length,
|
||||||
|
showDelete: false,
|
||||||
|
);
|
||||||
|
}).divide(SizedBox(height: 25.rpx)),
|
||||||
|
),
|
||||||
|
|
||||||
|
/// 联系方式区域
|
||||||
|
Container(
|
||||||
|
width: double.infinity,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: themeController.currentColor.sc5,
|
||||||
|
borderRadius: BorderRadius.circular(
|
||||||
|
AppConstants().normal_container_radius),
|
||||||
|
),
|
||||||
|
child: Padding(
|
||||||
|
padding: EdgeInsetsDirectional.fromSTEB(
|
||||||
|
30.rpx, 30.rpx, 30.rpx, 30.rpx),
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
_buildParamRow(
|
||||||
|
context,
|
||||||
|
"联系人".tr,
|
||||||
|
"名称输入提示".tr,
|
||||||
|
(value) => repairController.name.value = value,
|
||||||
|
key: contactKey,
|
||||||
|
controller: _contactController,
|
||||||
|
),
|
||||||
|
_buildParamRow(
|
||||||
|
context,
|
||||||
|
"手机号".tr,
|
||||||
|
"手机号输入提示".tr,
|
||||||
|
(value) => repairController.phone.value = value,
|
||||||
|
key: phoneKey,
|
||||||
|
controller: _phoneController,
|
||||||
|
),
|
||||||
|
].divide(SizedBox(height: 30.rpx)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
||||||
|
.divide(SizedBox(height: 25.rpx))
|
||||||
|
.addToEnd(SizedBox(height: 25.rpx)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildParamRow(
|
||||||
|
BuildContext context,
|
||||||
|
String text,
|
||||||
|
String hinttext,
|
||||||
|
void Function(String)? onChanged, {
|
||||||
|
Key? key,
|
||||||
|
required TextEditingController controller,
|
||||||
|
}) {
|
||||||
|
return Row(
|
||||||
|
key: key,
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
width: 110.rpx,
|
||||||
|
child: Text(
|
||||||
|
text,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 26.rpx,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
color: themeController.currentColor.sc3,
|
||||||
|
),
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
softWrap: false,
|
||||||
|
maxLines: 1,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: BorderRadius.circular(10.rpx),
|
||||||
|
color: Colors.transparent,
|
||||||
|
),
|
||||||
|
child: TextFormField(
|
||||||
|
readOnly: true,
|
||||||
|
controller: controller,
|
||||||
|
autofocus: false,
|
||||||
|
decoration: InputDecoration(
|
||||||
|
isDense: true,
|
||||||
|
hintText: hinttext,
|
||||||
|
hintStyle: TextStyle(
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontSize: AppConstants().normal_text_fontSize,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
),
|
||||||
|
enabledBorder: OutlineInputBorder(
|
||||||
|
borderSide:
|
||||||
|
BorderSide(color: Colors.transparent, width: 1.rpx),
|
||||||
|
borderRadius: BorderRadius.circular(
|
||||||
|
AppConstants().normal_container_radius),
|
||||||
|
),
|
||||||
|
focusedBorder: OutlineInputBorder(
|
||||||
|
borderSide:
|
||||||
|
BorderSide(color: Colors.transparent, width: 1.rpx),
|
||||||
|
borderRadius: BorderRadius.circular(8.rpx),
|
||||||
|
),
|
||||||
|
filled: true,
|
||||||
|
fillColor: themeController.currentColor.sc15,
|
||||||
|
),
|
||||||
|
style: TextStyle(
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
color: themeController.currentColor.sc4,
|
||||||
|
fontSize: AppConstants().normal_text_fontSize,
|
||||||
|
),
|
||||||
|
cursorColor: themeController.currentColor.sc3,
|
||||||
|
onChanged: onChanged,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].divide(SizedBox(width: 24.rpx)),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,8 +1,13 @@
|
|||||||
import 'package:ef/ef.dart';
|
import 'package:ef/ef.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutterflow_ui/flutterflow_ui.dart';
|
import 'package:flutterflow_ui/flutterflow_ui.dart';
|
||||||
|
import 'package:vbvs_app/common/color/ServiceConstant.dart';
|
||||||
import 'package:vbvs_app/common/util/FitTool.dart';
|
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||||
import 'package:vbvs_app/common/util/MyUtils.dart';
|
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||||
|
import 'package:vbvs_app/common/util/requestWithLog.dart';
|
||||||
|
import 'package:vbvs_app/component/NullDataComponentWidget.dart';
|
||||||
|
import 'package:vbvs_app/controller/repair/repair_controller.dart';
|
||||||
|
import 'package:vbvs_app/model/api_response.dart';
|
||||||
import 'package:vbvs_app/pages/repair/component/RepairHistoryInfoWidget.dart';
|
import 'package:vbvs_app/pages/repair/component/RepairHistoryInfoWidget.dart';
|
||||||
|
|
||||||
class RepairListPage extends StatefulWidget {
|
class RepairListPage extends StatefulWidget {
|
||||||
@@ -13,6 +18,8 @@ class RepairListPage extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _RepairListPageState extends State<RepairListPage> {
|
class _RepairListPageState extends State<RepairListPage> {
|
||||||
|
RepairController repairController = Get.find();
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
@@ -92,26 +99,23 @@ class _RepairListPageState extends State<RepairListPage> {
|
|||||||
child: Padding(
|
child: Padding(
|
||||||
padding:
|
padding:
|
||||||
EdgeInsetsDirectional.fromSTEB(30.rpx, 29.rpx, 30.rpx, 0),
|
EdgeInsetsDirectional.fromSTEB(30.rpx, 29.rpx, 30.rpx, 0),
|
||||||
child: SingleChildScrollView(
|
child: Obx(() {
|
||||||
child: Column(
|
final isEmpty = repairController.repairHistory.value.isEmpty;
|
||||||
mainAxisSize: MainAxisSize.max,
|
if (isEmpty) {
|
||||||
children: [
|
return Expanded(child: NullDataWidget());
|
||||||
RepairHistoryInfoWidget(),
|
}
|
||||||
RepairHistoryInfoWidget(),
|
return SingleChildScrollView(
|
||||||
RepairHistoryInfoWidget(),
|
child: Column(
|
||||||
RepairHistoryInfoWidget(),
|
mainAxisSize: MainAxisSize.max,
|
||||||
RepairHistoryInfoWidget(),
|
children: repairController.repairHistory.value
|
||||||
RepairHistoryInfoWidget(),
|
.map((item) => RepairHistoryInfoWidget(
|
||||||
RepairHistoryInfoWidget(),
|
data: item)) // 假设组件支持传 data
|
||||||
]
|
.toList()
|
||||||
.divide(SizedBox(
|
.divide(SizedBox(height: 25.rpx))
|
||||||
height: 25.rpx,
|
.addToEnd(SizedBox(height: 25.rpx)),
|
||||||
))
|
),
|
||||||
.addToEnd(SizedBox(
|
);
|
||||||
height: 25.rpx,
|
}),
|
||||||
)),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -121,11 +125,14 @@ class _RepairListPageState extends State<RepairListPage> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<void> loadData() async {
|
Future<void> loadData() async {
|
||||||
// repairController.repairHistory.value = [{}];
|
String serviceAddress = ServiceConstant.service_address;
|
||||||
// ApiResponse apiResponse = await requestWithLog(
|
String serviceName = ServiceConstant.server_service;
|
||||||
// logTitle: "请求维修列表", method: MyHttpMethod.get, queryUrl: "");
|
String serviceApi = ServiceConstant.submit_repair;
|
||||||
// if (apiResponse.code == HttpStatusCodes.ok) {
|
String queryUrl = "${serviceAddress}${serviceName}${serviceApi}";
|
||||||
// //请求维修列表
|
ApiResponse apiResponse = await requestWithLog(
|
||||||
// }
|
logTitle: "查询报修数据", method: MyHttpMethod.get, queryUrl: queryUrl);
|
||||||
|
RepairController repairController = Get.find();
|
||||||
|
repairController.repairHistory.value = apiResponse.data;
|
||||||
|
repairController.updateAll();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import 'package:ef/ef.dart';
|
import 'package:ef/ef.dart';
|
||||||
import 'package:flutter/cupertino.dart';
|
import 'package:flutter/cupertino.dart';
|
||||||
|
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||||
import 'package:vbvs_app/component/tool/TopSlideNotification.dart';
|
import 'package:vbvs_app/component/tool/TopSlideNotification.dart';
|
||||||
import 'package:vbvs_app/controller/theme_controller/ThemeController.dart';
|
|
||||||
import 'package:vbvs_app/controller/user_info_controller.dart';
|
import 'package:vbvs_app/controller/user_info_controller.dart';
|
||||||
import 'package:vbvs_app/pages/device/BodyDeviceWidget.dart';
|
import 'package:vbvs_app/pages/device/BodyDeviceWidget.dart';
|
||||||
import 'package:vbvs_app/pages/device/device_detail.dart';
|
import 'package:vbvs_app/pages/device/device_detail.dart';
|
||||||
@@ -27,6 +27,8 @@ import 'package:vbvs_app/pages/main_bottom/mine_page.dart';
|
|||||||
import 'package:vbvs_app/pages/person/person_page.dart';
|
import 'package:vbvs_app/pages/person/person_page.dart';
|
||||||
import 'package:vbvs_app/pages/person/update_person_page.dart';
|
import 'package:vbvs_app/pages/person/update_person_page.dart';
|
||||||
import 'package:vbvs_app/pages/repair/apply_repair_page.dart';
|
import 'package:vbvs_app/pages/repair/apply_repair_page.dart';
|
||||||
|
import 'package:vbvs_app/pages/repair/apply_repair_success.dart';
|
||||||
|
import 'package:vbvs_app/pages/repair/repair_detail_page.dart';
|
||||||
import 'package:vbvs_app/pages/repair/repair_list_page.dart';
|
import 'package:vbvs_app/pages/repair/repair_list_page.dart';
|
||||||
import 'package:vbvs_app/pages/setting/language_setting.dart';
|
import 'package:vbvs_app/pages/setting/language_setting.dart';
|
||||||
import 'package:vbvs_app/pages/sleep_report/new_sleep_report_page.dart';
|
import 'package:vbvs_app/pages/sleep_report/new_sleep_report_page.dart';
|
||||||
@@ -37,8 +39,6 @@ import 'package:vbvs_app/pages/user/setting_page.dart';
|
|||||||
import 'package:vbvs_app/pages/user/update_user_page.dart';
|
import 'package:vbvs_app/pages/user/update_user_page.dart';
|
||||||
import 'package:vbvs_app/pages/user/user_scheme_page.dart';
|
import 'package:vbvs_app/pages/user/user_scheme_page.dart';
|
||||||
|
|
||||||
ThemeController themeController = Get.find();
|
|
||||||
|
|
||||||
var routes = {
|
var routes = {
|
||||||
"/homePage": (contxt) => HomePage(),
|
"/homePage": (contxt) => HomePage(),
|
||||||
"/sleepReportPage": (contxt, {arguments}) =>
|
"/sleepReportPage": (contxt, {arguments}) =>
|
||||||
@@ -52,12 +52,12 @@ var routes = {
|
|||||||
"/blueteethDevice": (contxt) => BlueteethDevicePage(),
|
"/blueteethDevice": (contxt) => BlueteethDevicePage(),
|
||||||
"/personPage": (contxt) => PersonPage(),
|
"/personPage": (contxt) => PersonPage(),
|
||||||
"/bindDeviceSuccess": (contxt) => BindDeviceSuccess(),
|
"/bindDeviceSuccess": (contxt) => BindDeviceSuccess(),
|
||||||
"/wifiPage": (contxt, {arguments}) => WifiPage(type:arguments),
|
"/wifiPage": (contxt, {arguments}) => WifiPage(type: arguments),
|
||||||
"/otherLoginPage": (contxt) => OtherLoginPage(),
|
"/otherLoginPage": (contxt) => OtherLoginPage(),
|
||||||
"/updateUserPage": (contxt) => UpdateUserPage(),
|
"/updateUserPage": (contxt) => UpdateUserPage(),
|
||||||
"/settingPage": (contxt) => SettingPage(),
|
"/settingPage": (contxt) => SettingPage(),
|
||||||
"/aboutUsPage": (contxt) => AboutUsPage(),
|
"/aboutUsPage": (contxt) => AboutUsPage(),
|
||||||
"/bodyDevice": (contxt,{arguments}) => BodyDeviceWidget(type:arguments),
|
"/bodyDevice": (contxt, {arguments}) => BodyDeviceWidget(type: arguments),
|
||||||
"/deviceTypeList": (contxt) => DeviceTypeListPage(),
|
"/deviceTypeList": (contxt) => DeviceTypeListPage(),
|
||||||
"/deviceDetail": (contxt, {arguments}) => DeviceDetailPage(device: arguments),
|
"/deviceDetail": (contxt, {arguments}) => DeviceDetailPage(device: arguments),
|
||||||
"/instantBodyPage": (contxt, {arguments}) =>
|
"/instantBodyPage": (contxt, {arguments}) =>
|
||||||
@@ -79,6 +79,9 @@ var routes = {
|
|||||||
NewSleepReportPage(date: arguments),
|
NewSleepReportPage(date: arguments),
|
||||||
"/userSchemePage": (contxt) => UserSchemePage(),
|
"/userSchemePage": (contxt) => UserSchemePage(),
|
||||||
"/privacyPage": (contxt) => PrivacySchemePage(),
|
"/privacyPage": (contxt) => PrivacySchemePage(),
|
||||||
|
"/repairDetailPage": (contxt, {arguments}) =>
|
||||||
|
RepairDetailPage(data: arguments),
|
||||||
|
"/applyRepairSuccess": (contxt) => ApplyRepairSuccess(),
|
||||||
};
|
};
|
||||||
|
|
||||||
var onGenerateRoute = (RouteSettings settings) {
|
var onGenerateRoute = (RouteSettings settings) {
|
||||||
|
|||||||
Reference in New Issue
Block a user