补充地图的演示功能
This commit is contained in:
@@ -59,7 +59,13 @@ class ReservationController extends GetxController with BaseControllerMixin {
|
||||
} else {
|
||||
costPrice = "暂无价格";
|
||||
}
|
||||
customerPrice = result.data["customerPrice"] ?? "暂无价格";
|
||||
var customerPriceTemp = result.data["customerPrice"];
|
||||
if (customerPriceTemp != null && customerPriceTemp.toString().isNotEmpty) {
|
||||
customerPrice = "$customerPriceTemp";
|
||||
} else {
|
||||
customerPrice = "暂无价格";
|
||||
}
|
||||
|
||||
phone = result.data["phone"];
|
||||
startBusiness = result.data["startBusiness"];
|
||||
endBusiness = result.data["endBusiness"];
|
||||
|
||||
Reference in New Issue
Block a user